{% set allgroupes = getAllGroupes() %} {# ON AFFICHE LES GROUPES LOCAUX UNIQUEMENT SI IL Y EN A PLUS D'UN #} {% if allgroupes|length > 1 %}
{{ 'Groupes Locaux'|trans }}

{% for groupe in allgroupes %} {{groupe.name}}{% if not loop.last %}{% endif %} {% endfor %}

{% endif %}