aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/templates/size-child-super.txt2
-rw-r--r--testing/templates/size-child.txt2
-rw-r--r--testing/templates/size-parent.txt1
3 files changed, 5 insertions, 0 deletions
diff --git a/testing/templates/size-child-super.txt b/testing/templates/size-child-super.txt
new file mode 100644
index 0000000..77c2916
--- /dev/null
+++ b/testing/templates/size-child-super.txt
@@ -0,0 +1,2 @@
+{% extends "size-parent.txt" %}
+{% block main %}{% call super() %}{% endblock %}
diff --git a/testing/templates/size-child.txt b/testing/templates/size-child.txt
new file mode 100644
index 0000000..86adbf8
--- /dev/null
+++ b/testing/templates/size-child.txt
@@ -0,0 +1,2 @@
+{% extends "size-parent.txt" %}
+{% block main %}{% if true %}123{% endif %}{% endblock %}
diff --git a/testing/templates/size-parent.txt b/testing/templates/size-parent.txt
new file mode 100644
index 0000000..e277a24
--- /dev/null
+++ b/testing/templates/size-parent.txt
@@ -0,0 +1 @@
+{% block main %}{% if true %}12345{% endif %}{% endblock %}