Create 403_csrf.html (#803)

This takes advantage of the ability to easily customize the 403 template for CSRF, introduced in Django 1.10.
This commit is contained in:
Marlon 2016-10-05 07:01:30 -07:00 committed by Jannis Gebauer
parent 50b883c7ea
commit bb15e5a02e

View File

@ -0,0 +1,9 @@
{% raw %}{% extends "base.html" %}
{% block title %}Forbidden (403){% endblock %}
{% block content %}
<h1>Forbidden (403)</h1>
<p>CSRF verification failed. Request aborted.</p>
{% endblock content %}{% endraw %}