diff --git a/rest_framework/templates/rest_framework/base.html b/rest_framework/templates/rest_framework/base.html
index a88e1591c..4d057b632 100644
--- a/rest_framework/templates/rest_framework/base.html
+++ b/rest_framework/templates/rest_framework/base.html
@@ -290,7 +290,7 @@
diff --git a/tests/test_templates.py b/tests/test_templates.py
index 0dba78ea2..195296e16 100644
--- a/tests/test_templates.py
+++ b/tests/test_templates.py
@@ -3,15 +3,23 @@ import re
from django.shortcuts import render
-def test_base_template_with_context():
- context = {'request': True, 'csrf_token': 'TOKEN'}
- result = render({}, 'rest_framework/base.html', context=context)
- assert re.search(r'\bcsrfToken: "TOKEN"', result.content.decode())
-
-
def test_base_template_with_no_context():
# base.html should be renderable with no context,
# so it can be easily extended.
result = render({}, 'rest_framework/base.html')
# note that this response will not include a valid CSRF token
assert re.search(r'\bcsrfToken: ""', result.content.decode())
+
+
+def test_base_template_with_simple_context():
+ context = {'request': True, 'csrf_token': 'TOKEN'}
+ result = render({}, 'rest_framework/base.html', context=context)
+ # note that response will STILL not include a CSRF token
+ assert re.search(r'\bcsrfToken: ""', result.content.decode())
+
+
+def test_base_template_with_editing_context():
+ context = {'request': True, 'post_form': object(), 'csrf_token': 'TOKEN'}
+ result = render({}, 'rest_framework/base.html', context=context)
+ # response includes a CSRF token in support of the POST form
+ assert re.search(r'\bcsrfToken: "TOKEN"', result.content.decode())