Last active
February 2, 2021 15:38
-
-
Save codeboy/5391d3b43ad400b92cb5 to your computer and use it in GitHub Desktop.
Django templates - iterate over nested dictionary
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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