forked from DGNum/gestioCOF
17 lines
528 B
HTML
17 lines
528 B
HTML
|
{% extends "base_title.html" %}
|
||
|
|
||
|
{% block realcontent %}
|
||
|
<h1><strong>{{ error_title }}</strong></h1>
|
||
|
<p>{{ error_description }}</p>
|
||
|
{% if choices %}
|
||
|
<h3>Vos vœux:</h3>
|
||
|
<ol>
|
||
|
{% for choice in choices %}
|
||
|
<li>{{ choice.spectacle }}{% if choice.double %} (deux places{% if autoquit %}, abandon automatique{% endif %}){% endif %}</li>
|
||
|
{% endfor %}
|
||
|
</ol>
|
||
|
{% else %}
|
||
|
<h3>Vous n'avez enregistré aucun vœu pour le tirage au sort</h3>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|