{# form: ForumPostType view, forum_persona_choices: EditorialAuthor[], show_forum_persona_picker: bool #} {% if show_forum_persona_picker|default(false) and form.displayPersonaId is defined %} {% set field = form.displayPersonaId %} {% set field_name = field.vars.full_name %} {% set selected = field.vars.value|default('') %}
Publier en tant que
{% for author in forum_persona_choices|default([]) %} {% set author_id = author.id ? author.id ~ '' : '' %} {% set avatar_path = author.avatarPublicPath %} {% endfor %}
{% do form.displayPersonaId.setRendered() %} {% endif %}