{% if comments is not empty %} {% for c in comments %}
{{ c.getAuthorName() | slice(0,1) | upper }}
{{ c.getAuthorName() }} {% if c.isInternal() %} {{ translations.comment_internal | default('Interne') }} {% endif %} {{ c.getCreatedAt() | date('d/m/Y H:i') }}
{{ c.getBody() }}
{% endfor %} {% else %}

{{ translations.no_comments | default('Aucun commentaire.') }}

{% endif %}