gestioCOF/bda/templates/spectacle_list.html

12 lines
381 B
HTML
Raw Normal View History

2013-09-05 22:21:32 +02:00
{% extends "base_title.html" %}
{% block realcontent %}
<h1><strong>Spectacles</strong></h1>
<ul>
2016-06-06 00:14:08 +02:00
<li><a href="{% url 'bda-unpaid' tirage.id %}">Pas payé</a></li>
2013-09-05 22:21:32 +02:00
{% for spectacle in object_list %}
2016-06-06 00:14:08 +02:00
<li><a href="{% url 'bda-spectacle' tirage_id=tirage.id spectacle_id=spectacle.id %}">{{ spectacle }}</a></li>
2013-09-05 22:21:32 +02:00
{% endfor %}
</ul>
{% endblock %}