2016-05-21 23:57:36 +02:00
|
|
|
{% extends "base_title.html" %}
|
|
|
|
|
|
|
|
{% block realcontent %}
|
2016-07-25 19:19:07 +02:00
|
|
|
<h2><strong>Places attribuées</strong></h3>
|
2016-05-21 23:57:36 +02:00
|
|
|
{% if warning %}
|
|
|
|
<h3 class="error">Attention, vous avez reçu plusieurs places pour des spectacles différents à la même date !</h3>
|
|
|
|
{% endif %}
|
|
|
|
{% if places %}
|
2016-07-27 15:29:06 +02:00
|
|
|
<table class="table table-striped">
|
2016-05-21 23:57:36 +02:00
|
|
|
{% for place in places %}
|
2016-07-27 15:29:06 +02:00
|
|
|
<tr>
|
|
|
|
<td>{{place.spectacle.title}}</td>
|
|
|
|
<td>{{place.spectacle.location}}</td>
|
2016-11-08 10:24:17 +01:00
|
|
|
<td>{{place.spectacle.date}}</td>
|
2016-07-27 15:29:06 +02:00
|
|
|
<td>{% if place.double %}deux places{%else%}une place{% endif %}</td>
|
|
|
|
</tr>
|
2016-05-21 23:57:36 +02:00
|
|
|
{% endfor %}
|
2016-07-27 15:29:06 +02:00
|
|
|
</table>
|
|
|
|
<h4 class="bda-prix">Total à payer : {{ total|floatformat }}€</h4>
|
|
|
|
<br/>
|
2016-07-29 20:17:04 +02:00
|
|
|
<p>Ne manque pas un spectacle avec le
|
2016-07-16 18:22:53 +02:00
|
|
|
<a href="{% url "gestioncof.views.calendar" %}">calendrier
|
2016-07-29 20:17:04 +02:00
|
|
|
automatique !</a></p>
|
2016-05-21 23:57:36 +02:00
|
|
|
{% else %}
|
|
|
|
<h3>Vous n'avez aucune place :(</h3>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|