Temperatur
{{ tempValue is not null ? tempValue|number_format(2) ~ ' °C' : '--' }}
Druck
{{ pressureValue is not null ? pressureValue|number_format(2) ~ ' bar' : '--' }}
Gesamtmasse
{{ group.massKg is defined and group.massKg is not null ? group.massKg|number_format(1) ~ ' kg' : '--' }}
Nutzbar
{{ group.usableMassKg is defined and group.usableMassKg is not null ? group.usableMassKg|number_format(1) ~ ' kg' : '--' }}
Füllstand
{{ group.fillLevelPercent is defined and group.fillLevelPercent is not null ? group.fillLevelPercent|number_format(0) ~ '%' : '--' }}
{% if group.tankCount is defined and group.tankCount is not null %}
Behälter
{{ group.tankCount }}
{% endif %}
{% set sectionChannel = (tempSensor and tempSensor.channel is defined and tempSensor.channel is not null)
? tempSensor.channel
: ((pressureSensor and pressureSensor.channel is defined and pressureSensor.channel is not null) ? pressureSensor.channel : null) %}
{% if sectionChannel is not null %}
Kanal
{{ sectionChannel }}
{% endif %}
Grund: {{ alarmReason }}