blob: 1005dc00093a52b595080840cddc5309cefeeb7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% 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>
{% if sensor.hasTemperature() %}
<span class="text-secondary">Температура:</span> <b>{{ sensor.temp }}</b> °C<br>
{% endif %}
{% if sensor.hasHumidity() %}
<span class="text-secondary">Влажность:</span> <b>{{ sensor.humidity }}</b>%
{% endif %}
{% endfor %}
|