kpsul/templates/bda3/spectacle_list.html

12 lines
340 B
HTML
Raw Normal View History

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