2021-07-28 08:12:57 +02:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
|
|
|
|
<h2>Erreur !</h2>
|
|
|
|
|
2021-09-21 14:01:46 +02:00
|
|
|
{{ exc | safe }}
|
2021-07-28 08:12:57 +02:00
|
|
|
|
2022-01-04 17:33:02 +01:00
|
|
|
<p>
|
2021-07-28 08:12:57 +02:00
|
|
|
{% if g.scodoc_dept %}
|
2022-01-04 17:33:02 +01:00
|
|
|
<a href="{{ exc.dest_url or url_for('scolar.index_html', scodoc_dept=g.scodoc_dept) }}">continuer</a>
|
2021-07-28 08:12:57 +02:00
|
|
|
{% else %}
|
2021-09-21 14:01:46 +02:00
|
|
|
<a href="{{ exc.dest_url or url_for('scodoc.index') }}">retour page d'accueil</a>
|
2021-07-28 08:12:57 +02:00
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{% endblock %}
|