34 lines
762 B
HTML
34 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 %}
|