{% extends "base.html" %} {% block content %}

Dashboard Nächste Prüfung in -- Sekunden

{% set current_group = None %} {% for d in devices %} {% set group = d[1][:3] %} {% if group != current_group %} {% if not loop.first %}
{% endif %}
{{ group }}
{% set current_group = group %} {% endif %}
{{ d[1] }}
{% if d[2] == 0 %} Deaktiviert {% else %} {% if status[d[0]] %}{{ status[d[0]]|capitalize }}{% else %}Unbekannt{% endif %} {% endif %}
{% if loop.last %}
{% endif %} {% endfor %} {% endblock %}