view1.html:
{{block left_sidebar}}
asdf
{{end}}
debug.html:
{{left_sidebar_enabled = True}}
{{extend 'layout.html'}}
{{include 'view1.html'}}
controller:
def debug():
return {}
The content from view1.html doesn't appear and I don't understand why.
If I modify view1.html as follows:
{{block left_sidebar}}
asdf
{{end}}
qwer
qwer
does appear on the page but not asdf
.
Any help appreciated.