mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-22 14:32:54 +03:00
15 lines
308 B
HTML
15 lines
308 B
HTML
|
{% 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 %}
|