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

Suivi des notes internes liées à ce produit

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

{{ comment.description }}

{% endfor %}