arrowcounter/counter/templates/500.html
Claudio Maggioni (maggicl) 4848698d63 Added translations in italian
2019-07-27 13:58:09 +02:00

15 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 %}