{% if conversations|length == 0 %}
Aucune conversation
{% endif %} {% for conv in conversations %}
{{ conv.lastname|first ~ conv.firstname|first }}
{{ conv.lastname }} {{ conv.firstname }}
{{ conv.content != null ? conv.content|slice(0, 10) ~ " - " ~ conv.createdAt|ago : "Aucun message" }}
{% endfor %}