{% extends "base.html" %} {% block title %}Backup-Verwaltung{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Zeitpunkt: {{ last_backup.id.strftime('%d.%m.%Y %H:%M:%S') }}
Größe: {{ (last_backup.filename / 1024 / 1024)|round(2) }} MB
Dauer: {{ last_backup.filesize|round(1) }} Sekunden
{% else %}Noch kein Backup vorhanden
{% endif %}Automatische Backups: Täglich um 03:00 Uhr
| Zeitstempel | Dateiname | Größe | Typ | Status | Erstellt von | Details | Aktionen |
|---|---|---|---|---|---|---|---|
| {{ backup.created_at.strftime('%d.%m.%Y %H:%M:%S') }} | {{ backup.filename }} {% if backup.is_encrypted %} 🔒 Verschlüsselt {% endif %} | {% if backup.filesize %} {{ (backup.filesize / 1024 / 1024)|round(2) }} MB {% else %} - {% endif %} | {% if backup.backup_type == 'manual' %} Manuell {% else %} Automatisch {% endif %} | {% if backup.status == 'success' %} ✅ Erfolgreich {% elif backup.status == 'failed' %} ❌ Fehlgeschlagen {% else %} ⏳ In Bearbeitung {% endif %} | {{ backup.created_by }} |
{% if backup.tables_count and backup.records_count %}
{{ backup.tables_count }} Tabellen {{ backup.records_count }} Datensätze {% if backup.duration_seconds %} {{ backup.duration_seconds|round(1) }}s {% endif %} {% else %} - {% endif %} |
{% if backup.status == 'success' %} {% endif %} |
Noch keine Backups vorhanden.