{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Internal server error" %}{% endblock %}
{% block content %}
{% trans "Internal server error" %}
{% url "index" as link %}
{% blocktrans with link=link %}
The server failed to process the request. Please return to the home.
{% endblocktrans %}
{% endblock %}