Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Sed feugiat, sapien ut pulvinar luctus, ex metus tincidunt ante,
non egestas mauris velit nec libero. Praesent at luctus nunc.
{% for event in events %}
{{ event.name }}
Lieu : A COMPLETER
Date : du {{ event.startOn|date('d/m/Y \\à H:i') }} au {{ event.endOn|date('d/m/Y \\à H:i') }}
{{ event.description }}
{% set authors = [] %}
{% for party in event.parties %}
{% if party.gamemasterIsAuthor and party.gamemaster not in authors %}
{% set authors = authors|merge([party.gamemaster]) %}
{% endif %}
{% endfor %}
{% if authors|length > 0 %}
{% for gamemaster in authors %}
Les auteur(rice)s présent(e)s
{{ gamemaster.preferedName }}
{{ gamemaster.description }}
Auteur(rice) de : {{ gamemaster.authorOfGames|map(game => game.name)|join(', ') }}
{% endfor %}
{% endif %}
Vous pouvez vous inscrire dès à présent à nos animations !