Déplace les templates dans les apps

This commit is contained in:
Basile Clement 2016-05-26 02:59:05 +02:00
parent c5db003842
commit 8408942d41
71 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{% extends "base_title.html" %}
{% block realcontent %}
<h3><strong>Places attribuées</strong></h3>
{% 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 %}
<ol>
{% for place in places %}
<li>{{ place.spectacle }}{% if place.double %} (deux places){% endif %}</li>
{% endfor %}
</ol>
<h4>Total à payer : {{ total|floatformat }}€</h4>
<h4><a href="{% url "bda-places-attribuees-ics" %}">Exporter au format calendrier</a> (.ics, compatible avec tous les logiciels d'agenda)</h4>
{% else %}
<h3>Vous n'avez aucune place :(</h3>
{% endif %}
{% endblock %}