mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-15 14:17:43 +03:00
30e8506872
* Add djLint for HTML formatting and linting * Remove djLint pre-commit hook * Bump djLint from 1.31.0 to 1.31.1
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 %}
|