summaryrefslogtreecommitdiff
path: root/tests/templates
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-03-18 10:46:55 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-03-18 10:46:55 +0000
commitee2f04d79e5bca55637b9bb3301618738a4e342a (patch)
tree91e94bc284c1cb44ce131b8acc972e3585b2b110 /tests/templates
parent61a2708c4108939795c70cf124d5696275d6c255 (diff)
downloaddjango-ee2f04d79e5bca55637b9bb3301618738a4e342a.tar.gz
Fixed #10482 -- Unified access to response.context when inspecting responses from the test client. Thanks to James Bennett for the design, and Julien Phalip for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10084 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/templates')
-rw-r--r--tests/templates/extended.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/templates/extended.html b/tests/templates/extended.html
new file mode 100644
index 0000000000..e0d8a13727
--- /dev/null
+++ b/tests/templates/extended.html
@@ -0,0 +1,5 @@
+{% extends "base.html" %}
+{% block title %}Extended template{% endblock %}
+{% block content %}
+This is just a template extending the base.
+{% endblock %} \ No newline at end of file