﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
16009	CSRF_FAILRE_TEMPLATE is misspelled	Alex Dehnert	nobody	"The CSRF_FAILRE_TEMPLATE variable appears to be misspelled.

{{{
diff --git a/django/views/csrf.py b/django/views/csrf.py
index 038b0b7..80cc21d 100644
--- a/django/views/csrf.py
+++ b/django/views/csrf.py
@@ -6,7 +6,7 @@ from django.conf import settings
 # this error message, especially for the sake of developers, and there isn't any
 # other way of making it available independent of what is in the settings file.
 
-CSRF_FAILRE_TEMPLATE = """"""
+CSRF_FAILURE_TEMPLATE = """"""
 <!DOCTYPE html>
 <html lang=""en"">
 <head>
@@ -94,7 +94,7 @@ def csrf_failure(request, reason=""""):
     Default view used when request fails CSRF protection
     """"""
     from django.middleware.csrf import REASON_NO_REFERER
-    t = Template(CSRF_FAILRE_TEMPLATE)
+    t = Template(CSRF_FAILURE_TEMPLATE)
     c = Context({'DEBUG': settings.DEBUG,
                  'reason': reason,
                  'no_referer': reason == REASON_NO_REFERER
}}}"	Cleanup/optimization	closed	CSRF	1.3	Normal	fixed		Alex Dehnert	Ready for checkin	1	0	0	0	1	0
