furizon_webint/tpl/error.html

13 lines
317 B
HTML

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