{# discussion_feed: événements récents en premier, avec avatar_url / avatar_label #}
{% for item in discussion_feed %} {% if item.type == 'goal' %}
{% if item.avatar_url|default(null) %} {% include 'competition/_match_hub_v2_feed_avatar.html.twig' with { avatar_url: item.avatar_url, avatar_label: item.avatar_label|default(item.scorer), avatar_modifier: 'goal', } only %} {% else %} {% endif %}
{% if item.minute is not null %} {{ item.minute }}' {% endif %}
But {{ item.scorer }} {{ item.team_label }} · {{ item.score_after }}
{% elseif item.type == 'system' %}

{{ item.text }}

{% elseif item.type == 'auto' %}
{% include 'competition/_match_hub_v2_feed_avatar.html.twig' with { avatar_url: item.avatar_url|default(null), avatar_label: item.avatar_label|default(item.author), } only %}
{% if item.minute is not null %} {{ item.minute }}' {% endif %}
{{ item.author }}

{{ item.text }}

{% else %}
{% include 'competition/_match_hub_v2_feed_avatar.html.twig' with { avatar_url: item.avatar_url|default(null), avatar_label: item.avatar_label|default(item.author), } only %}
{% if item.minute is not null %} {{ item.minute }}' {% endif %}
{{ item.author }}

{{ item.text|e }}

{% endif %} {% else %}

Aucun message pour l’instant.

{% endfor %}