summaryrefslogtreecommitdiff
path: root/tests/template_tests/templates/included_content.html
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2013-05-30 10:25:58 +0300
committerAnssi Kääriäinen <akaariai@gmail.com>2013-06-01 00:59:04 +0300
commit369b6fab25b55ceb363ba2a8cb7e0f1a88ef8f8d (patch)
treecd04263f614eebeb661f5f07d07db02514bba220 /tests/template_tests/templates/included_content.html
parent84909377f2f2eea07ab8bf398dafc69e2d736b50 (diff)
Fixed #18169 -- NoReverseMatch not silenced if from block.super
Diffstat (limited to 'tests/template_tests/templates/included_content.html')
-rw-r--r--tests/template_tests/templates/included_content.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/template_tests/templates/included_content.html b/tests/template_tests/templates/included_content.html
new file mode 100644
index 0000000000..bfc87c0425
--- /dev/null
+++ b/tests/template_tests/templates/included_content.html
@@ -0,0 +1,11 @@
+{% extends "included_base.html" %}
+
+{% block content %}
+ content
+ {{ block.super }}
+{% endblock %}
+
+{% block error_here %}
+ error here
+ {% url "non_existing_url" %}
+{% endblock %}