diff --git a/templates/base.html b/templates/base.html index 378d7e1..e9dc3a7 100644 --- a/templates/base.html +++ b/templates/base.html @@ -11,6 +11,20 @@ .optionen label { font-weight: normal; } td form { margin-bottom: 0; } .brand-logo { height: 2.2rem; vertical-align: middle; margin-right: 0.5rem; } + /* Nutzer-Feedback (01.09.2026): die Erstellungsinfo auf + /installationsmedium ("Aktuelles Installationsmedium") stand relativ + weit oben, war aber "etwas unscheinbar" - nach dem Absenden des + Erstellen-Formulars weiter unten fiel die aktualisierte Info oben + kaum auf. Farbiger linker Rand + Pico-eigene Sectioning-Hintergrund- + farbe statt eigener Farbwerte, damit Dark/Light-Mode automatisch + erhalten bleibt. + */ + .highlight-box { + border-left: 4px solid var(--pico-primary); + background: var(--pico-card-sectioning-background-color); + padding: 1rem 1.25rem; + border-radius: var(--pico-border-radius); + } /* Nav-Umbau 26.08.2026 (siehe ADR "Produktname und Navigationsstruktur"): vertikale Primär-Nav links, Hauptbereich rechts. Pico bringt kein diff --git a/templates/installationsmedium.html b/templates/installationsmedium.html index d3d879c..be76ae4 100644 --- a/templates/installationsmedium.html +++ b/templates/installationsmedium.html @@ -8,7 +8,7 @@ {% endif %} {% if konfiguration %} -
+

Aktuelles Installationsmedium

@@ -33,6 +33,9 @@ {% if iso_build.expires_at %}

Zum Download verfügbar bis: {{ iso_build.expires_at }} (danach automatisch gelöscht — Kontingent/Gültigkeit der Registrierung selbst sind davon unabhängig).

{% endif %} + {% if iso_build.size_bytes %} +

Größe: {{ iso_build.size_bytes | filesizeformat }}

+ {% endif %} {% if iso_build.sha256 %}

SHA256: {{ iso_build.sha256 }}

{% endif %}