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