2018-08-10 11:26:45 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2019-07-27 11:58:09 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}{% trans "Internal server error" %}{% endblock %}
|
2018-08-10 11:26:45 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2019-07-27 11:58:09 +00:00
|
|
|
<h1 class="center">{% trans "Internal server error" %}</h1>
|
|
|
|
{% url "index" as link %}
|
|
|
|
{% blocktrans with link=link %}
|
|
|
|
The server failed to process the request. Please <a href="{{ link }}">return to the home</a>.
|
|
|
|
{% endblocktrans %}
|
|
|
|
</p>
|
2018-08-10 11:26:45 +00:00
|
|
|
{% endblock %}
|