Re: Can Django template extend dynamic content in child or grandchild template?

2020-10-14 Thread tristant
Sorry for the badly formatted html code. My question on Stackoverflow here: https://stackoverflow.com/questions/64359521/djang-multiple-levels-of-template-extension-while-keeping-the-elements-of-the-up Thanks, On Wednesday, October 14, 2020 at 1:03:43 PM UTC-6 tristant wrote: > > ... {%

Can Django template extend dynamic content in child or grandchild template?

2020-10-14 Thread tristant
... {% block content %} {% endblock %} category.html : {% extends "base.html" %} {% block content %} < div id="menu_category_display"> {% for category in menu_categories %} {% with category_button="menu_"|add:category.name|lower %} {{category}} {% endwith %} {% endfor %}{% block