mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 08:50:12 +00:00
9 lines
No EOL
441 B
Text
9 lines
No EOL
441 B
Text
<ul class="nav nav-tabs card-header-tabs">
|
|
{% for index, entry in pairsByKeys(entries) do %}
|
|
{% if not entry.hidden then %}
|
|
<li class="nav-item">
|
|
<a class="nav-link {{ ((entry.disabled or entry.key == current_page ) and 'disabled' or '') }} {{ ((entry.key == current_page or entry.active) and 'active' or '') }}" href="{{ entry.url }}">{{ entry.title }}</a>
|
|
</li>
|
|
{% end %}
|
|
{% end %}
|
|
</ul> |