forked from ScoDoc/ScoDoc
21 lines
501 B
Django/Jinja
21 lines
501 B
Django/Jinja
{# -*- mode: jinja-html -*- #}
|
|
{% extends 'base.j2' %}
|
|
{% import 'wtf.j2' 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 %}
|