canaille-globuzma/canaille/templates/error.html

16 lines
423 B
HTML
Raw Normal View History

{% extends theme('base.html') %}
2020-08-19 14:20:57 +00:00
{% block content %}
<div class="ui error message">
{% if error == 400 %}
2020-10-26 18:09:38 +00:00
{% trans %}Bad request{% endtrans %}
{% elif error == 403 %}
{% trans %}Unauthorized{% endtrans %}
2020-08-19 14:20:57 +00:00
{% elif error == 404 %}
2020-10-26 18:09:38 +00:00
{% trans %}Page not found{% endtrans %}
2020-08-19 14:20:57 +00:00
{% elif error == 500 %}
2020-10-26 18:09:38 +00:00
{% trans %}Technical problem{% endtrans %}
2020-08-19 14:20:57 +00:00
{% endif %}
</div>
{% endblock %}