forked from ScoDoc/ScoDoc
19 lines
483 B
HTML
19 lines
483 B
HTML
{% 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 %} |