87149d0d4e
Affiche la liste des descriptions des spectacles d'un tirage. Accessible sans authentification.
33 lines
762 B
HTML
33 lines
762 B
HTML
{% for show in shows %}
|
|
<table id="spectacle-{{ show.id }}">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">
|
|
<p style="text-align: center;">{{ show.title }}</p>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>{{ show.location }}</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td>{{ show.date }}</td>
|
|
<td>{{ show.slots }} place{{ show.slots|pluralize}} - show.price</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<p style="text-align: justify;">{{ show.description }}</p>
|
|
</td>
|
|
</tr>
|
|
{% if slots_description != "" %}
|
|
<tr>
|
|
<td colspan="2">
|
|
{{ show.slots_description }}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
</tbody>
|
|
</table>
|
|
{% endfor %}
|