{% for menu in nav_items %} {# Main Collapsible Menu #}
{{ menu.label }}
{% for group in menu.groups %} {# Within each main menu, there are groups of menu items #}
{% if menu.groups|length > 1 %}
{{ group.label }}
{% endif %} {% for item in group.items %} {# Each Menu Item #}
{# Menu Link with Text #} {{ item.label }} {# Add & Import Buttons #} {% if item.has_add or item.has_import %}
{% if item.has_add %} {% endif %} {% if item.has_import %} {% endif %}
{% endif %}
{% endfor %}
{# Show a divider if not the last group #} {% if forloop.counter != menu.groups|length %}
{% endif %} {% endfor %}
{% endfor %}