kpsul/templates/bda2/spectacle_list.html
2013-09-05 22:22:47 +02:00

12 lines
340 B
HTML

{% extends "base_title.html" %}
{% block realcontent %}
<h1><strong>Spectacles</strong></h1>
<ul>
<li><a href="{% url 'bda2-unpaid' %}">Pas payé</a></li>
{% for spectacle in object_list %}
<li><a href="{% url 'bda2-spectacle' spectacle.id %}">{{ spectacle }}</a></li>
{% endfor %}
</ul>
{% endblock %}