blob: 3b4c25e9360b7d2750d22d538a6a08ae7f155eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% include 'bc.twig' with {
history: [
{link: '/modem/', text: "Модемы" },
{text: modem_name}
]
} %}
{% for item in data %}
{% set item_name = item[0] %}
{% set item_data = item[1] %}
<h6 class="text-primary mt-4">{{ item_name }}</h6>
{% for k, v in item_data %}
{{ k }} = {{ v }}<br>
{% endfor %}
{% endfor %}
|