KEA update
All checks were successful
Deploy / deploy-staging (push) Successful in 6s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-04-16 01:19:07 +02:00
parent 04ec9dc227
commit 9f2af4676d
8 changed files with 416 additions and 46 deletions

View File

@@ -70,6 +70,8 @@
<th>Hostname</th>
<th>IP Adresse</th>
<th>MAC Adresse</th>
<th>Zuletzt gesehen</th>
<th>Lease bis</th>
<th>Echter Name</th>
<th>Standort</th>
<th>Gruppe</th>
@@ -79,7 +81,7 @@
<tbody>
<?php if (empty($hosts)): ?>
<tr>
<td colspan="8" class="kea-empty">
<td colspan="10" class="kea-empty">
Keine Reservierungen oder aktiven Leases gefunden.
</td>
</tr>
@@ -98,6 +100,12 @@
<td class="mono">
<?= e($host['dhcp_identifier']) ?>
</td>
<td>
<?= e((string)($host['last_seen_at'] ?? '-')) ?>
</td>
<td>
<?= e((string)($host['lease_expires_at'] ?? '-')) ?>
</td>
<td>
<?= e((string)($host['metadata']['real_name'] ?? '-')) ?>
</td>