summaryrefslogtreecommitdiff
path: root/djangoproject/templates/403.html
blob: caa65eabaf77b212a1ad22fc65f2b54a1367c5e3 (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 content %}