diff options
| author | Anssi Kääriäinen <akaariai@gmail.com> | 2013-05-30 10:25:58 +0300 |
|---|---|---|
| committer | Anssi Kääriäinen <akaariai@gmail.com> | 2013-06-01 00:59:04 +0300 |
| commit | 369b6fab25b55ceb363ba2a8cb7e0f1a88ef8f8d (patch) | |
| tree | cd04263f614eebeb661f5f07d07db02514bba220 /tests/template_tests/templates/included_content.html | |
| parent | 84909377f2f2eea07ab8bf398dafc69e2d736b50 (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.html | 11 |
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 %} |
