mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-16 06:36:59 +03:00
10 lines
269 B
HTML
10 lines
269 B
HTML
{% raw %}{% extends "base.html" %}
|
|
|
|
{% block title %}Forbidden (403){% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Forbidden (403)</h1>
|
|
|
|
<p>{% if exception %}{{ exception }}{% else %}CSRF verification failed. Request aborted.{% endif %}</p>
|
|
{% endblock content %}{% endraw %}
|