cookiecutter-django/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/403_csrf.html

15 lines
308 B
HTML
Raw Normal View History

{% raw %}{% extends "base.html" %}
{% block title %}Forbidden (403){% endblock title %}
{% block content %}
<h1>Forbidden (403)</h1>
<p>
{% if exception %}
{{ exception }}
{% else %}
You're not allowed to access this page.
{% endif %}
</p>
{% endblock content %}
{%- endraw %}