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

Suivi des notes internes liées à cette déclinaison

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

{{ comment.description }}

{% endfor %}