From 39ce50616322a58325540db6ef6832aafa51934f Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 21 May 2018 14:25:39 +0200 Subject: Forgot to add new test templates --- testing/templates/nested-base.html | 4 ++++ testing/templates/nested-child.html | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 testing/templates/nested-base.html create mode 100644 testing/templates/nested-child.html (limited to 'testing') diff --git a/testing/templates/nested-base.html b/testing/templates/nested-base.html new file mode 100644 index 0000000..2ae4255 --- /dev/null +++ b/testing/templates/nested-base.html @@ -0,0 +1,4 @@ +{% block content %} +loopy +{% block foo %}Foo{% endblock %} +{% endblock %} diff --git a/testing/templates/nested-child.html b/testing/templates/nested-child.html new file mode 100644 index 0000000..7bb69a2 --- /dev/null +++ b/testing/templates/nested-child.html @@ -0,0 +1,4 @@ +{% extends "nested-base.html" %} +{% block content %} +{% block foo %}durpy{% endblock %} +{% endblock content %} -- cgit