{% if user.notes is empty %}
Pas de commentaires.
{% endif %}
{% for key, note in user.notes %}
{{ note.user ? note.user.firstName : 'Utilisateur' }} {{ note.createAt|date('d/m/Y H:i') }}

{{ note.description }}

{% endfor %}