From 5f0ff4726ddbd38a895ee29402caabc5b10ad893 Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Thu, 24 Aug 2017 19:31:15 +0200 Subject: Allow {% block name %} {% endblock name %} This makes converting an app from tera to askama easier. --- testing/templates/child.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/templates') diff --git a/testing/templates/child.html b/testing/templates/child.html index 15e2fc4..d118642 100644 --- a/testing/templates/child.html +++ b/testing/templates/child.html @@ -1,2 +1,2 @@ {% extends "base.html" %} -{% block content %}({{ title }}) Content goes here{% endblock %} +{% block content %}({{ title }}) Content goes here{% endblock content %} -- cgit