ScoDoc/app/templates/sco_value_error.j2

27 lines
750 B
Plaintext
Raw Normal View History

2021-12-28 16:17:07 +01:00
{# -*- mode: jinja-html -*- #}
{% extends 'base.j2' %}
2021-07-28 08:12:57 +02:00
{% block app_content %}
<h2>Erreur !</h2>
{{ exc }}
2021-07-28 08:12:57 +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>
{% 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 %}
<a href="{{ exc.dest_url or url_for('scodoc.index') }}">retour page d'accueil</a>
2021-07-28 08:12:57 +02:00
{% endif %}
</div>
2021-07-28 08:12:57 +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 %}