2021-12-28 16:17:07 +01:00
|
|
|
{# -*- mode: jinja-html -*- #}
|
2023-01-30 22:25:17 +01:00
|
|
|
{% extends 'base.j2' %}
|
2021-07-28 08:12:57 +02:00
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
|
|
|
|
<h2>Erreur !</h2>
|
|
|
|
|
2023-06-01 19:04:02 +02:00
|
|
|
{{ exc | safe }}
|
2021-07-28 08:12:57 +02:00
|
|
|
|
2023-09-29 21:17:31 +02:00
|
|
|
<div style="margin-top: 16px;">
|
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>
|
2023-09-29 21:17:31 +02:00
|
|
|
{% elif exc.dest_url %}
|
|
|
|
<a href="{{ exc.dest_url or url_for('scodoc.index') }}">continuer</a>
|
2021-07-28 08:12:57 +02:00
|
|
|
{% else %}
|
2023-09-29 21:17:31 +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 %}
|
2023-09-29 21:17:31 +02:00
|
|
|
</div>
|
2021-07-28 08:12:57 +02:00
|
|
|
|
2023-09-05 21:49:10 +02:00
|
|
|
<p style="margin-top: 32px;" class="help">
|
|
|
|
Si le problème persiste, merci de contacter le support ScoDoc via
|
|
|
|
<a class="stdlink" noreferer href="{{scu.SCO_DISCORD_ASSISTANCE|safe}}">
|
|
|
|
{{scu.SCO_DISCORD_ASSISTANCE}}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
|
2021-07-28 08:12:57 +02:00
|
|
|
{% endblock %}
|