Evgeny Zinoviev cf0b9f036b auth
2022-05-27 01:04:47 +03:00

12 lines
399 B
Twig

{% include 'bc.twig' with {
history: [
{text: "Датчики" }
]
} %}
{% for key, sensor in sensors %}
<h6 class="text-primary{% if not loop.first %} mt-4{% endif %}">{{ sensor.name }}</h6>
<span class="text-secondary">Температура:</span> <b>{{ sensor.temp }}</b> °C<br>
<span class="text-secondary">Влажность:</span> <b>{{ sensor.humidity }}</b>%
{% endfor %}