{{ 'messages.title'|trans }} {% if unreadCount > 0 %} {{ unreadCount }} {% endif %}
{# ===== COLONNE GAUCHE - RECHERCHE ===== #}
{# ===== COLONNE CENTRALE - CONVERSATIONS ===== #}
{% for message in app.flashes('success') %}
{% else %}
{# ===== COLONNE DROITE - DERNIERS CONTACTÉS ===== #}
{{ message|trans }}
{% endfor %}
{% if conversations is empty %}
{{ 'messages.no_conversations'|trans }}
{{ 'messages.start_conversation_hint'|trans }}
{% for conversation in conversations %}
{% set contact = conversation.contact %}
{% set lastMsg = conversation.lastMessage %}
{% set isUnread = lastMsg.receiver_id == app.user.id and not lastMsg.is_read %}
{# Avatar + indicateur en ligne #}
{% if isUnread %}
{% endif %}
{% endfor %}
{% endif %}
{% if contact.avatarPath %}
{% else %}
{{ contact.firstName|first|upper }}{{ contact.lastName|first|upper }}
{% endif %}
{{ contact.displayName }}
voir profil
{{ lastMsg.created_at|date('d/m/Y H:i') }}
{% if lastMsg.sender_id == app.user.id %} {{ 'messages.you'|trans }}: {% endif %} {{ lastMsg.content|length > 60 ? lastMsg.content|slice(0, 60) ~ '...' : lastMsg.content }}