kpsul/bda/templates/spectacle_list.html
2016-06-06 00:14:08 +02:00

12 lines
381 B
HTML

{% extends "base_title.html" %}
{% block realcontent %}
<h1><strong>Spectacles</strong></h1>
<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=tirage.id spectacle_id=spectacle.id %}">{{ spectacle }}</a></li>
{% endfor %}
</ul>
{% endblock %}