{% set totalComments = pack.comments|length %} {% set myComments = 0 %} {% for comment in pack.comments %} {% if app.user and comment.user and comment.user.id == app.user.id %} {% set myComments = myComments + 1 %} {% endif %} {% endfor %}
Commentaires pack

Suivi des notes internes liees a ce pack

{{ totalComments }} commentaire{{ totalComments > 1 ? 's' : '' }}
{% if pack.comments is empty %}
Aucun commentaire pour ce pack.
{% endif %}
{% for comment in pack.comments|sort((a,b)=> a.createAt <=> b.createAt)|reverse %}
{{ comment.user ? comment.user.firstName : 'Utilisateur' }} {{ comment.createAt ? comment.createAt|date('d/m/Y H:i') : '' }}

{{ comment.description }}

{% endfor %}