Déplace l'interface des tirages vers une vue spéciale

This commit is contained in:
ludo 2016-06-10 18:10:25 +02:00
parent e93e60ec84
commit e15aed65c9
2 changed files with 9 additions and 12 deletions

View file

@ -1,11 +1,18 @@
{% extends "base_title.html" %}
{% block realcontent %}
<h1><strong>Spectacles</strong></h1>
<h1><strong>{{tirage_name}}</strong></h1>
<br>
<h2>Liste des spectacles</h2>
<ul>
<li><a href="{% url 'bda-unpaid' tirage_id %}">Pas payé</a></li>
{% for spectacle in object_list %}
<li><a href="{% url 'bda-spectacle' tirage_id spectacle.id %}">{{ spectacle }}</a></li>
{% endfor %}
</ul>
<br>
<h2> Exports </h2>
<ul>
<li><a href="{% url 'bda-unpaid' tirage_id %}">Mailing list impayés</a>
<li><a href="{% url 'bda-liste-spectacles-ics' tirage_id %}">Calendrier des spectacles (.ics)</a>
</ul>
{% endblock %}