{% for comment in comments %}
{# Ligne meta — inline, largeur intacte #}
{{ comment.createAt|date("d/m/Y H:i") }} {{ comment.isPublic ? 'Public' : 'Interne' }} {% if comment.user and app.user and (comment.user.id == app.user.id or is_granted('ROLE_SUPER_ADMIN')) %} {{ comment.isPinned ? 'Épinglé' : 'Normal' }} {% endif %} {{ comment.user ? comment.user.firstName : '-' }}
{# Texte commentaire — span obligatoire pour largeur #} {{ comment.description }} {% if comment.user and app.user and (comment.user.id == app.user.id) %} {% endif %} {# Formulaire édition inline — largeur intacte #}
{% endfor %}