From 074d2da4ec7be06a07adc24b2b4a2f67907784c2 Mon Sep 17 00:00:00 2001 From: boban Date: Mon, 27 Oct 2025 18:25:09 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20Mailbox=20Stats=20=C3=BCber=20Dovecot=20?= =?UTF-8?q?mit=20config/mailpool.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ui/system/backup-status-card.blade.php | 92 ++++++++++++++++--- 1 file changed, 79 insertions(+), 13 deletions(-) diff --git a/resources/views/livewire/ui/system/backup-status-card.blade.php b/resources/views/livewire/ui/system/backup-status-card.blade.php index 6099af2..1102bb8 100644 --- a/resources/views/livewire/ui/system/backup-status-card.blade.php +++ b/resources/views/livewire/ui/system/backup-status-card.blade.php @@ -1,20 +1,86 @@ -
-
+
+
Backups
- + +
-
-
Letztes Backup: {{ $lastAt ?? '–' }}
-
Größe: {{ $lastSize ?? '–' }}
-
Dauer: {{ $lastDuration ?? '–' }}
-
- - {{ $ok === null ? 'unbekannt' : ($ok ? 'erfolgreich' : 'fehlgeschlagen') }} - + + {{-- Laufender Fortschritt --}} + @if($state === 'running') +
+
Sicherung läuft…
+
    + @foreach($steps as $k => $label) + @php + $done = $k === 'finish' ? false : ($k === $step ? false : (array_key_first(array_flip($steps)) !== $k && $k !== $step && $step && array_search($k, array_keys($steps)) < array_search($step, array_keys($steps)))); + $isCurrent = $k === $step; + @endphp +
  • + + + {{ $label }} + +
  • + @endforeach +
-
+ @else + {{-- Letztes Ergebnis --}} +
+
Letztes Backup: + {{ $lastAt ?? '–' }} +
+
Größe: + {{ $lastSize ?? '–' }} +
+
Dauer: + {{ $lastDuration ?? '–' }} +
+
+ + {{ $ok === null ? 'unbekannt' : ($ok ? 'erfolgreich' : 'fehlgeschlagen') }} + +
+
+ @endif
+{{--
--}} +{{--
--}} +{{--
--}} +{{-- --}} +{{-- Backups--}} +{{--
--}} +{{-- --}} +{{--
--}} +{{--
--}} +{{--
Letztes Backup: {{ $lastAt ?? '–' }}
--}} +{{--
Größe: {{ $lastSize ?? '–' }}
--}} +{{--
Dauer: {{ $lastDuration ?? '–' }}
--}} +{{--
--}} +{{-- --}} +{{-- {{ $ok === null ? 'unbekannt' : ($ok ? 'erfolgreich' : 'fehlgeschlagen') }}--}} +{{-- --}} +{{--
--}} +{{--
--}} +{{--
--}}