kpsul/bda/templates/spectacle_list.html

12 lines
338 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>
2013-09-05 22:22:47 +02:00
<li><a href="{% url 'bda-unpaid' %}">Pas payé</a></li>
2013-09-05 22:21:32 +02:00
{% for spectacle in object_list %}
2013-09-05 22:22:47 +02:00
<li><a href="{% url 'bda-spectacle' spectacle.id %}">{{ spectacle }}</a></li>
2013-09-05 22:21:32 +02:00
{% endfor %}
</ul>
{% endblock %}