blob: 90437fd489d6b98e6ba557ae21c474497385a169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% include 'routing_header.twig' with {
selected_tab: 'smallhome'
} %}
<div class="mt-3 mb-3">
Текущий апстрим: <b>{{ current.label }}</b>
</div>
{% for key, modem in modems %}
{% if key != current.key %}
<div class="pt-1 pb-2">
<a href="/routing/switch-small-home/?upstream={{ key }}">
<button type="button" class="btn btn-primary">Переключить на <b>{{ modem.label }}</b></button>
</a>
</div>
{% endif %}
{% endfor %}
|