aboutsummaryrefslogtreecommitdiff
path: root/localwebsite/templates-web/modem_status_page.twig
blob: 3f20b86c3f54b04abb5cd8bf90ef3f00fa42f96f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% include 'bc.twig' with {
  history: [
    {text: "Модемы" }
  ]
} %}

{% for modem_key, modem in modems %}
  <h6 class="text-primary{% if not loop.first %} mt-4{% endif %}">{{ modem.label }}</h6>
  <div id="modem_data_{{ modem_key }}">
    {% include 'modem_data.twig' with {
      loading: true,
      modem: modem_key
    } %}
  </div>
{% endfor %}

{% js %}
ModemStatus.init({{ js_modems|json_encode|raw }});
{% endjs %}