{% load variable_types %} {% if sub_nav_value|is_dict %} {% for key, val in sub_nav_value.items %} {% if val|is_dict %}
{{ key }}
{% if key_stack is None %} {% include 'django_spire/metric/report/element/report_sub_navigation_element.html' with depth=True sub_nav_value=val key_stack=key %} {% else %} {% include 'django_spire/metric/report/element/report_sub_navigation_element.html' with depth=True sub_nav_value=val key_stack=key_stack|add:'|'|add:key %} {% endif %}
{% else %} {% with full_key=key_stack|add:'|'|add:key %} {{ key }} {% endwith %} {% endif %} {% endfor %} {% endif %}