summaryrefslogtreecommitdiff
path: root/localwebsite/templates-web/sensors.twig
blob: 14f8454b77e846abebf1701f64130aac18745e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% 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 %}