sfsdf
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-23 00:21:47 +02:00
parent ac3ac0803b
commit 39bddf39e2
11 changed files with 375 additions and 71 deletions

9
modules/kea/design.json Normal file
View File

@@ -0,0 +1,9 @@
{
"eyebrow": "Modul",
"title": "KEA DHCP",
"description": "Verwaltung von KEA DHCP Hosts und Reservierungen.",
"actions": [
{ "label": "Gruppen verwalten", "href": "/module/kea/groups", "variant": "secondary" },
{ "label": "Setup", "href": "/modules/setup/kea", "variant": "secondary" }
]
}

View File

@@ -6,6 +6,10 @@
* @var array $stats Kennzahlen fuer die Uebersicht.
*/
?>
<?= module_shell_header('kea', [
'title' => 'KEA DHCP Hosts',
'description' => 'Reservierungen und aktuelle Leases aus der KEA-Datenbank.',
]) ?>
<section class="kea-page">
<div class="section-head">
<div>
@@ -15,10 +19,6 @@
Automatische Aktualisierung alle 5 Sekunden.
</p>
</div>
<div class="setup-actions">
<a class="cta-button" href="/module/kea/groups">Gruppen verwalten</a>
<a class="nav-link" href="/modules/setup/kea">Setup</a>
</div>
</div>
<?php if ($error): ?>
@@ -226,3 +226,4 @@
window.setInterval(refresh, 5000);
})();
</script>
<?= module_shell_footer() ?>