5ecd143535
- Kein Node.js, kein npm, kein Build-Schritt mehr - HTMX 2.0.4 + PicoCSS 2 vendored in backend/static/ - Jinja2 Templates für alle 9 Seiten (Dashboard, ZFS, Snapshots, Shares, Identities, Logs, Services, Navigator, Login) - HTMX Fragments für Live-Updates (30s Polling Dashboard) - JWT als httpOnly Cookie statt localStorage - Disk Usage zeigt TB/PB korrekt (Jinja2 serverseitig formatiert) - Update-safe: nur Python-Deps, keine npm-Abhängigkeiten Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
493 B
HTML
15 lines
493 B
HTML
{% extends "base.html" %}
|
||
{% block title %}Logs – ZMB Webui{% endblock %}
|
||
{% block content %}
|
||
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem">
|
||
<h2 style="margin:0">System Logs</h2>
|
||
<button hx-get="/fragments/logs" hx-target="#log-content" hx-swap="innerHTML">↻ Aktualisieren</button>
|
||
</div>
|
||
|
||
<div id="log-content"
|
||
hx-get="/fragments/logs"
|
||
hx-trigger="load, every 15s">
|
||
<p aria-busy="true">Lade...</p>
|
||
</div>
|
||
{% endblock %}
|