{% extends "base_title.html" %}

{% block realcontent %}
    <h1><strong>{{ error_title }}</strong></h1>
    <p>{{ error_description }}</p>
    {% if choices %}
    <h3>Vos v&oelig;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&oelig;u pour le tirage au sort</h3>
    {% endif %}
{% endblock %}