summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/500.html
blob: dbe2278a750747d8b822ec166cce377796e777a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% load i18n %}<!doctype html>
<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 %}
    </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>
</body>

</html>