2021-12-28 16:17:07 +01:00
|
|
|
{# -*- mode: jinja-html -*- #}
|
2021-10-10 21:09:53 +02:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
|
|
|
|
<h2>Accès non autorisé</h2>
|
|
|
|
|
|
|
|
{{ exc | safe }}
|
|
|
|
|
|
|
|
<p class="footer">
|
|
|
|
{% if g.scodoc_dept %}
|
|
|
|
<a href="{{ exc.dest_url or url_for('scolar.index_html', scodoc_dept=g.scodoc_dept) }}">retour page d'accueil
|
|
|
|
departement {{ g.scodoc_dept }}</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ exc.dest_url or url_for('scodoc.index') }}">retour page d'accueil</a>
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
{% endblock %}
|