srv/poe_manager/templates/index.html aktualisiert

This commit is contained in:
2025-10-12 18:11:26 +02:00
parent b6e9ff3f98
commit 3bd2aca4f5

View File

@@ -7,24 +7,15 @@
Nächste Prüfung in -- Sekunden
</span>
</h2>
<div class="container">
{% set current_prefix = None %}
<div class="row row-cols-1 row-cols-md-6 g-3">
<div class="row g-3">
{% for d in devices %}
{% set prefix = d[1][:3] %} {# die ersten 3 Buchstaben #}
{% if current_prefix != prefix %}
{% if not loop.first %}
</div> {# vorige Reihe schließen #}
{% endif %}
<div class="row row-cols-1 row-cols-md-6 g-3"> {# neue Reihe starten #}
{% set current_prefix = prefix %}
{% endif %}
<div class="col">
<div class="col-6 col-md-4 col-lg-3 col-xl-2">
<div class="card text-center p-2"
{% if last_seen.get(d[0]) %} title="{{ last_seen[d[0]] }}"
{% elif status[d[0]] == 'offline' %} title="Noch nie online" {% endif %}>
{% if last_seen.get(d[0]) %}
title="{{ last_seen[d[0]] }}"
{% elif status[d[0]] == 'offline' %}
title="Noch nie online"
{% endif %}>
<div class="card-header">{{ d[1] }}</div>
<div class="card-body">
<span class="fw-bold" style="color:
@@ -41,10 +32,6 @@
</div>
</div>
</div>
{% if loop.last %}
</div> {# letzte Reihe schließen #}
{% endif %}
{% endfor %}
</div>
<script>