Online
{{ stats.online }}
Offline
{{ stats.offline }}
{% if current_user.is_authenticated %}
Deaktiviert
{{ stats.disabled }}
{% endif %}
Gesamt
{{ stats.total }}
{% macro device_tile(d) %} {% set st = status.get(d['mac'], 'unbekannt') %}
{% if d['is_active'] == 0 %} Deaktiviert {% else %} {{ {'online':'Online','offline':'Offline','unbekannt':'Unbekannt'}[st] }} {% endif %}
{{ d['name'] }}
{% if current_user.is_authenticated %}
{{ d['ip'] }}
{% endif %}
{% endmacro %} {% if device_count %} {% macro section_chevron() %}{% endmacro %} {% if offline_devices %}
{{ section_chevron() }}Offline {{ offline_devices|length }}
{% for d in offline_devices %}{{ device_tile(d) }}{% endfor %}
{% endif %} {% if online_devices %}
{{ section_chevron() }}Online {{ online_devices|length }}
{% for d in online_devices %}{{ device_tile(d) }}{% endfor %}
{% endif %} {% if disabled_devices %}
{{ section_chevron() }}Deaktiviert {{ disabled_devices|length }}
{% for d in disabled_devices %}{{ device_tile(d) }}{% endfor %}
{% endif %} {% else %}
{% if current_user.is_authenticated %} Noch keine Geräte angelegt. Füge welche unter Devices hinzu. {% else %} Aktuell keine Geräte verfügbar. {% endif %}
{% endif %}