Back to Netbox

Menu

netbox/utilities/templates/navigation/menu.html

4.6.2436 B
Original Source

{% load helpers %} {% load i18n %} {% load navigation %}

{% trans "Search" %}

{% for menu, groups in nav_items %} - {# Menu heading #} {{ menu.label }} {# Menu groups #}

{% for group, items in groups %} {{ group.label }} {% for item, buttons in items %} {{ item.link_text }} {% if buttons %} {% for button in buttons %} {% endfor %} {% endif %} {% endfor %} {% endfor %}

{% endfor %}