{% extends "base_title.html" %} {% block realcontent %}

{{ spectacle }}

{% for participant in participants %} {% endfor %}
Nom Identifiant Places Adresse Mail Payé Donné
{{participant.name}} {{participant.username}} {{participant.nb_places}} place{{participant.nb_places|pluralize}} {{participant.email}}
{% if participant.paid %}Oui{% else %}Non{%endif%}
{% if participant.given %}Oui{% else %}Non{%endif%}


{% endblock %}