{% for chat in app.user.chats %}
{% include "mercure/templates/users.html.twig" with {chat : chat, index: loop.index} %}
{% endfor %}
{% for chat in app.user.chats %}
{% for msg in chat.message %}
{% include "mercure/templates/message.html.twig" with {user : msg.user, message : msg.content, date :msg.date} %}
{% endfor %}