{% set authorName = message.author.firstname ?: (message.author.pseudo ?: 'Membre #' ~ message.author.id) %}
{% if message.author.avatar %} {{ authorName }} {% else %}
{% endif %}
{{ authorName }}
{{ message.createdAt|date('d/m/Y à H:i', 'Europe/Paris') }}
{{ message.message|nl2br }}
{% if message.comments|length > 0 %}
{% for comment in message.comments %} {% set commentAuthor = comment.author.firstname ?: (comment.author.pseudo ?: 'Membre #' ~ comment.author.id) %}
{% if comment.author.avatar %} {{ commentAuthor }} {% else %}
{% endif %}
{{ commentAuthor }}
{{ comment.createdAt|date('d/m/Y à H:i', 'Europe/Paris') }}

{{ comment.comment }}

{% endfor %}
{% endif %}