Skip to content

Instantly share code, notes, and snippets.

@codeboy
Last active February 2, 2021 15:38
Show Gist options
  • Save codeboy/5391d3b43ad400b92cb5 to your computer and use it in GitHub Desktop.
Save codeboy/5391d3b43ad400b92cb5 to your computer and use it in GitHub Desktop.
Django templates - iterate over nested dictionary
Sample code:
main template: assuming 'all_root_elems' is list of one or more root of tree
<ul>
{%for node in all_root_elems %}
{%include "tree_view_template.html" %}
{%endfor%}
</ul>
tree_view_template.html renders the nested ul, li and uses node template variable as below:
<li> {{node.name}}
{%if node.has_childs %}
<ul>
{%for ch in node.all_childs %}
{%with node=ch template_name="tree_view_template.html" %}
{%include template_name%}
{%endwith%}
{%endfor%}
</ul>
{%endif%}
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment