{% extends 'base.html' %} {% block title %}Backup Manager{% endblock %} {% block content %}

System Backup Manager

{{ version_info.version }} - {{ version_info.release_name }}

Backup Status

Total backups: {{ backup_count }}
Latest backup: {{ latest_backup|default('None yet') }}
Scheduled backups: {{ 'Enabled' if schedule_enabled else 'Disabled' }}
{% if schedule_enabled %}
Next backup: {{ next_backup|default('Not scheduled') }}
{% endif %}
Storage location: {{ backup_location }}

Quick Actions

Manage Backups

Backup Schedule Configuration

Enter 0 to keep all backups indefinitely

View suggested configuration for scheduled backups

Create Custom Backup

Leave blank for automatic timestamp-based name

Existing Backups

Backup Retention Policy

Retention Policy Status

{% if retention_days > 0 %} Currently keeping backups for {{ retention_days }} days. Older backups will be automatically deleted. {% else %} No retention policy is currently applied. All backups will be kept indefinitely. {% endif %}

{% if backups %}
{% for backup in backups %} {% endfor %}
Backup Name Created Version Size Actions
{{ backup.backup_name }}
{{ backup.file_name }}
{% if backup.timestamp %} {{ backup.timestamp|timestamp_to_datetime|format_datetime('%Y-%m-%d %H:%M') }} {% else %} Unknown {% endif %} v{{ backup.version }} {% if backup.release_name %}
{{ backup.release_name }}
{% endif %}
{{ (backup.file_size / 1024 / 1024)|round(2) }} MB
{% else %}

No backups found.

{% endif %}

System Health

Database

Database is operational and accessible.

File Storage

File storage is available and writable.

Configuration

System configuration is valid.

Back to System Settings Back to Home
{% endblock %} {% block scripts %} {% endblock %}