{% extends 'base.html' %} {% load humanize %} {% block title %}Backup & Restore - Administration - van Hees-Theyssen-Vogel'sche Stiftung{% endblock %} {% block content %}
Neues Backup erstellen
{% csrf_token %}
Vollständiges Backup: Datenbank + Dateien + Konfiguration
Nur Datenbank: PostgreSQL Dump
Nur Dateien: Uploads und Konfigurationsdateien
Wiederherstellung
Warnung: Die Wiederherstellung überschreibt alle aktuellen Daten!
{% csrf_token %}
Nur .tar.gz Dateien von diesem System sind erlaubt.
Backup Historie {% if page_obj %} {{ page_obj.paginator.count }} {% endif %}
{% if page_obj %}
{% for backup in page_obj %} {% endfor %}
Erstellt Vorgang Typ Status Größe Dauer Erstellt von Aktionen
{{ backup.created_at|date:"d.m.Y" }}
{{ backup.created_at|date:"H:i:s" }}
{% if backup.operation == 'backup' %} Backup {% else %} Restore {% endif %} {{ backup.get_backup_type_display }} {{ backup.get_status_display }} {% if backup.status == 'running' %}
{% if backup.get_duration %} Läuft seit {{ backup.get_duration.total_seconds|floatformat:0 }}s {% endif %} {% endif %}
{% if backup.backup_size %} {{ backup.get_size_display }} {% else %} - {% endif %} {% if backup.get_duration %} {{ backup.get_duration.total_seconds|floatformat:1 }}s {% else %} - {% endif %} {% if backup.created_by %} {{ backup.created_by.username }} {% else %} System {% endif %} {% if backup.status == 'completed' and backup.operation == 'backup' %} {% elif backup.status == 'failed' %} {% elif backup.status == 'running' %}
{% if backup.created_by == request.user or request.user.is_staff %} {% endif %}
{% elif backup.status == 'cancelled' %} Abgebrochen {% elif backup.status == 'completed' and backup.operation == 'restore' %} Fertig {% else %} - {% endif %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}
Keine Backups vorhanden

Erstellen Sie Ihr erstes Backup über das Formular oben.

{% endif %}