14 lines
384 B
HTML
14 lines
384 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Internal server error" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<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>
|
|
{% endblock %}
|