{% for unit in units %}

{{ unit.name }}

{{ unit.chassis.name }}

{% if unit.battery_level %}
Battery
{{ unit.battery_level }}%
{% endif %} {% if unit.rf_level %}
RF Signal
{{ unit.rf_level }}%
{% endif %} {% if unit.audio_level %}
Audio
{{ unit.audio_level }}%
{% endif %}
{% if unit.is_active %}Active{% else %}Inactive{% endif %}
{% empty %}

No devices found

{% endfor %}