blob: 8cb5f47a0a8f73d27f2fc9f76a896f9aae568f14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% include 'bc.twig' with {
history: [
{text: "Маршрутизация" }
]
} %}
{% set routing_tabs = [
{tab: 'smallhome', url: '/routing/', label: 'Маленький дом'},
{tab: 'ipsets', url: '/routing/ipsets/', label: 'Правила'},
{tab: 'dhcp', url: '/routing/dhcp/', label: 'DHCP'}
] %}
<nav>
<div class="nav nav-tabs" id="nav-tab">
{% for tab in routing_tabs %}
<a href="{{ tab.url }}" class="text-decoration-none"><button class="nav-link{% if tab.tab == selected_tab %} active{% endif %}" type="button">{{ tab.label }}</button></a>
{% endfor %}
</div>
</nav>
{% if error %}
<div class="mt-4 alert alert-danger"><b>Ошибка:</b> {{ error }}</div>
{% endif %}
|