forked from DGNum/gestioCOF
12 lines
544 B
HTML
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 %}
|