1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

9 lines
273 B
HTML
Raw Normal View History

{% for tab in tabs %}
<li role="presentation" class="nav-item">
<a href="{{ tab.url }}" class="nav-link{% if tab.is_active %} active{% endif %}">
{{ tab.label }}
{% if tab.badge_value %}{% badge tab.badge_value %}{% endif %}
</a>
</li>
{% endfor %}