10 lines
326 B
HTML

{% extends 'error_handler_base.html' %}
{% load i18n %}
{% block content %}
<div class="text-center mt-5">
<h1>403, {% trans 'forbidden' %}</h1>
<p>{% trans 'You need the proper permission to make that request.' %}</p>
<a href="/" class="link">&LeftArrow; {% trans 'Return to the app' %}</a>
</div>
{% endblock %}