kpsul/bda/templates/spectacle_list.html

12 lines
358 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>
<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 %}
<li><a href="{% url 'bda-spectacle' tirage_id spectacle.id %}">{{ spectacle }}</a></li>
2013-09-05 22:21:32 +02:00
{% endfor %}
</ul>
{% endblock %}