srv/poe_manager/templates/index.html aktualisiert

This commit is contained in:
2025-10-12 16:53:23 +02:00
parent 7c81f3a299
commit aa2895ccf5

View File

@@ -22,7 +22,17 @@
{% if d[2] == 0 %}
Deaktiviert
{% else %}
{% if status[d[0]] %}{{ status[d[0]]|capitalize }}{% else %}Unbekannt{% endif %}
{% if status[d[0]] == 'online' %}
Online
{% elif status[d[0]] == 'offline' %}
Offline<br>
{% if last_seen[d[0]] %}
{{ last_seen[d[0]][0] }}<br>
{{ last_seen[d[0]][1] }}
{% endif %}
{% else %}
Unbekannt
{% endif %}
{% endif %}
</span>
</div>