mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 00:04:26 +00:00
10 lines
446 B
Twig
10 lines
446 B
Twig
{% import 'ChillPersonBundle:Person:macro.html.twig' as person_macro %}
|
|
|
|
{% if ignored_participations|length > 0 %}
|
|
<p>{% transchoice ignored_participations|length %}The following people have been ignored because they are already participating on the event{% endtranschoice %} :</p>
|
|
<ul>
|
|
{% for p in ignored_participations %}
|
|
<li>{{ person_macro.render(p.person) }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %} |