blob: 77393a6da24426978cd8734f9cb95a407aa4ff27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends 'base_error.html' %}
{% load i18n %}
{% block title %}{% translate "Permission denied" %}{% endblock %}
{% block header %}<h1>403</h1>{% endblock %}
{% block content %}
<h2>{% translate "Permission denied" %}</h2>
<p>{% translate "Apologies, but it seems as if you're not allowed to access this page. We honestly hope this is just a mistake." %}</p>
{% endblock %}
|