From 185c7b5ca4e51b048898d24bf4f22807750315f8 Mon Sep 17 00:00:00 2001 From: ludo Date: Sun, 12 Jun 2016 17:57:31 +0200 Subject: [PATCH] =?UTF-8?q?Vue=20listant=20les=20participants=20=C3=A0=20u?= =?UTF-8?q?n=20spectacle,=20avec=20quelques=20exports=20:=20liste=20des=20?= =?UTF-8?q?mails,=20et=20export=20des=20noms=20pour=20les=20salles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bda/templates/bda-participants.html | 72 +++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 bda/templates/bda-participants.html diff --git a/bda/templates/bda-participants.html b/bda/templates/bda-participants.html new file mode 100644 index 00000000..64f260b8 --- /dev/null +++ b/bda/templates/bda-participants.html @@ -0,0 +1,72 @@ +{% extends "base_title.html" %} +{% load utils %} + +{% block realcontent %} +

{{ spectacle }}

+ + + + + + + + + + + + {% for participant in participants %} + + + + + + + + + + {% endfor %} + + {% csrf_token %} + + + + + + + + + +
NomClipperPlacesAdresse MailPayéDonné
{{participant.user.get_full_name}}{{participant.user.username}}{{participant.nb_places}} place{{participant.nb_places|pluralize:",s"}}{{participant.user.email}} +
+ {{participant.paid|oui_ou_non}} +
+
+
+ {{participant.given|oui_ou_non}} +
+
+
+ + + +
+ + + + + +{% endblock %}