furizon_webint/tpl/error.html

13 lines
317 B
HTML
Raw Normal View History

2022-12-18 16:40:39 +00:00
{% extends "base.html" %}
{% block title %}Error {{status_code}}{% endblock %}
2022-12-18 16:40:39 +00:00
{% block main %}
<main class="container">
<h1>{{status_code}}</h1>
2022-12-18 16:40:39 +00:00
<p>{{exception}}</p>
{% if status_code == 409 %}
<p>Retrying in 1 second...</p>
<meta http-equiv="refresh" content="1">
{% endif %}
2022-12-18 16:40:39 +00:00
</main>
{% endblock %}