{% extends 'base.html' %}
{% import 'bootstrap/wtf.html' as wtf %}

{% block app_content %}

<h2>Erreur !</h2>

<p>{{ exc }}</p>

<p>
    {% if g.scodoc_dept %}
        <a href="{{ exc.dest_url or url_for('scolar.index_html', scodoc_dept=g.scodoc_dept) }}">continuer</a>
    {% else %}
        <a href="{{ exc.dest_url or url_for('scodoc.index') }}">continuer</a>
    {% endif %}
</p>

{% endblock %}