furizon_webint/tpl/error.html

13 lines
347 B
HTML
Raw Normal View History

2022-12-18 16:40:39 +00:00
{% extends "base.html" %}
{% block title %}Error {{exception.status_code}}{% endblock %}
{% block main %}
<main class="container">
2022-12-18 16:50:03 +00:00
<h1>{{exception.status_code}}</h1>
2022-12-18 16:40:39 +00:00
<p>{{exception}}</p>
{% if exception.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 %}