2024-04-26 17:41:14 +06:00

10 lines
295 B
HTML

{% extends 'error_handler_base.html' %}
{% load i18n %}
{% block content %}
<div class="text-center mt-5">
<h1>{% trans 'Server error' %}</h1>
<p>{% trans 'Please try again later.' %}</p>
<a href="/" class="link">&LeftArrow; {% trans 'Return to the app' %}</a>
</div>
{% endblock %}