{% if persons %}

{{ label }}

{% for person in persons|sort((a, b) => a.invitation_weight <=> b.invitation_weight) %}
{% set image = person.invitation_picture ? person.invitation_picture : items.base_url ~ '/themes/contrib/oe_theme/dist/eu/images/icons/svg/all/log-in.svg' %}
{{ person.firstname ~ ' ' ~ person.lastname }}

{% if items.year == 2025 %} {{ person.first_name ~ ' ' ~ person.last_name }} {% else %} {{ person.first_name ~ ' ' ~ person.last_name }} {% endif %}

    {% set comma = '' %} {% if person.function and person.organisation %} {% set comma = ', ' %} {% endif %}
  • {{ person.function|trim ~ comma ~ person.organisation }}
{% endfor %}
{% endif %}