{% load navigation_tags %} {% if menu_type == 'sidebar' %} {% for category, items in navigation_items.items %} {% if items %} {% if category != 'main' %} {% if category == 'reports' %} đReports & Analytics {% elif category == 'settings' %} âī¸Settings {% elif category == 'admin' %} Administration {% else %} {{ category|title }} {% endif %} {% endif %} {% for item in items %} {% if item.children %} {{ item.title }} {% if item.badge_count %} {{ item.badge_count }} {% endif %} īš {% for child in item.children %} {{ child.title }} {% if child.badge_count %} {{ child.badge_count }} {% endif %} {% endfor %} {% else %} {{ item.title }} {% if item.badge_count %} {{ item.badge_count }} {% endif %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% elif menu_type == 'mobile' %} {% for category, items in navigation_items.items %} {% if items %} {% if category != 'main' %} {{ category|title }} {% endif %} {% for item in items %} {% if item.children %} {{ item.title }} {% if item.badge_count %} {{ item.badge_count }} {% endif %} īš {% for child in item.children %} {{ child.title }} {% if child.badge_count %} {{ child.badge_count }} {% endif %} {% endfor %} {% else %} {{ item.title }} {% if item.badge_count %} {{ item.badge_count }} {% endif %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% endif %}