{# @param post ForumPost #} {# @param post_author_map array #} {# @param reply_forms array #} {# @param edit_forms array #} {% set author = post_author_map[post.id]|default({ nickname: 'Joueur', avatar: null, initials: '?' }) %}
{% include 'forum/_author_avatar.html.twig' with { avatar: author.avatar, nickname: author.nickname, initials: author.initials, } only %}
{{ post.content|raw }}
{% include 'forum/_message_manage.html.twig' with { message: post } %}
{% include 'forum/_message_edit.html.twig' with { message: post } %} {% if post.replies|length > 0 %}
    {% for reply in post.replies %} {% set reply_author = post_author_map[reply.id]|default({ nickname: 'Joueur', avatar: null, initials: '?' }) %}
  1. {% include 'forum/_author_avatar.html.twig' with { avatar: reply_author.avatar, nickname: reply_author.nickname, initials: reply_author.initials, small: true, } only %}
    {{ reply_author.nickname }}
    {{ reply.content|raw }}
    {% include 'forum/_message_manage.html.twig' with { message: reply } %}
    {% include 'forum/_message_edit.html.twig' with { message: reply } %}
  2. {% endfor %}
{% endif %} {% if reply_forms[post.id] is defined %} {% endif %}