kpsul/bda2/templates/etat-places.html
2016-05-26 02:59:19 +02:00

12 lines
544 B
HTML

{% extends "base_title.html" %}
{% block realcontent %}
<h2>Etat des inscriptions BDA</h2>
<ul>
{% for spectacle in spectacles %}
<li>{{ spectacle.title }} (<span style="font-size: 0.5em;">{{ spectacle.date_no_seconds }}, {{ spectacle.location }}</span>, {{ spectacle.slots }} places) : <strong>{{ spectacle.total }} demandes</strong></li>
{% endfor %}
</ul>
<strong>Total : <u>{{ total }} demandes</u></strong>
{% endblock %}