ScoDoc-Lille/app/templates/sco_value_error.html

18 lines
394 B
HTML
Raw Normal View History

2021-12-28 16:17:07 +01:00
{# -*- mode: jinja-html -*- #}
2021-07-28 08:12:57 +02:00
{% extends 'base.html' %}
{% block app_content %}
<h2>Erreur !</h2>
{{ exc | safe }}
2021-07-28 08:12:57 +02:00
2022-01-04 20:03:38 +01:00
<p>
2021-07-28 08:12:57 +02:00
{% if g.scodoc_dept %}
2022-01-04 20:03:38 +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 %}
<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 %}