arrowcounter/counter/templates/403.html

16 lines
379 B
HTML
Raw Normal View History

2018-08-10 11:26:45 +00:00
{% extends "base.html" %}
2019-07-27 11:58:09 +00:00
{% load i18n %}
{% block title %}{% trans "Not authorized" %}{% endblock %}
2018-08-10 11:26:45 +00:00
{% block content %}
2019-07-27 11:58:09 +00:00
<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>
2018-08-10 11:26:45 +00:00
{% endblock %}