summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/500.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/500.html')
-rw-r--r--ishtar_common/templates/500.html24
1 files changed, 19 insertions, 5 deletions
diff --git a/ishtar_common/templates/500.html b/ishtar_common/templates/500.html
index dbe2278a7..fb28f9169 100644
--- a/ishtar_common/templates/500.html
+++ b/ishtar_common/templates/500.html
@@ -2,15 +2,29 @@
<html lang="en">
<head>
<link rel="shortcut icon" href="{{STATIC_URL}}/media/images/favicon.png">
- <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %}
+ <link rel="stylesheet" href="{{STATIC_URL}}bootstrap/bootstrap.css?ver={{VERSION}}">
+ <link rel="stylesheet" href="{{STATIC_URL}}media/styles.css?ver={{VERSION}}">
+ <title>
+ {% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %}
</title>
<link rel="stylesheet" href="{{STATIC_URL}}/media/style.css?ver={{VERSION}}" />
</head>
<body>
-<div>
- <h3>{% trans "An error has occured. The support team has been warned." %}</h3>
- <p><a href='/'>{% trans "Back to main page" %}</a></p>
-</div>
+ <header class="navbar navbar-expand-lg navbar-dark bg-dark">
+ <a class="navbar-brand" href="/">
+ <img src="{{STATIC_URL}}media/images/ishtar-blason.svg"
+ width="30" height="30" alt="">
+ </a>
+ </header>
+ <div class="container">
+ {% block content %}
+ <h3>{% trans "An error has occured. The support team has been warned." %}</h3>
+ {% endblock %}
+ <p><a href='/'>{% trans "Back to main page" %}</a></p>
+ </div>
+ <div id="footer">
+ {% include 'ishtar/blocks/footer.html' %}
+ </div>
</body>
</html>