arrowcounter/counter/templates/403.html

16 lines
379 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Not authorized" %}{% endblock %}
{% block content %}
<h1 class="center">{% trans "Not authorized" %}</h1>
<p>
{% url "index" as link %}
{% blocktrans with link=link %}
You are not authorized to perform this action. Please <a href="{{ link }}">return to the home</a>.
{% endblocktrans %}
</p>
{% endblock %}