{# goals: list<{name, minute, side, is_csc?: bool}> #} {% if goals is empty %}

Aucun but enregistré pour l’instant.

{% else %} {% set sorted = goals|sort((a, b) => (a.minute ?? 0) <=> (b.minute ?? 0)) %}
    {% for goal in sorted %}
  1. {% if goal.minute %} {{ goal.minute }}' {% endif %} {% if goal.is_csc|default(false) %}CSC {% endif %}{{ goal.name }} {% if goal.side|default('home') == 'home' %} {{ home_label|default(match is defined and match ? country_short_label(match.paysDomicile) : 'Domicile') }} {% else %} {{ away_label|default(match is defined and match ? country_short_label(match.paysExterieur) : 'Extérieur') }} {% endif %}
  2. {% endfor %}
{% endif %}