{% extends 'base.html' %} {% block content %}
{{ t('backup.description', 'Create, download, upload and restore complete AssetManager backups.') }}
{{ backup_directory }}{{ t('backup.automatic_help', 'Backups are created automatically according to the configured interval and deleted after the retention period.') }}
{{ t('backup.contents_help', 'Each backup contains a PostgreSQL database dump, configuration, APPINFO and uploaded files. Environment variables and the .env file are not included.') }}
{{ t('backup.upload_help', 'Upload an AssetManager backup ZIP to make it available for download or restoration.') }}
{{ t('backup.available_help', 'Stored backups can be downloaded, restored or deleted here.') }}
| {{ t('backup.file', 'File') }} | {{ t('backup.created', 'Created') }} | {{ t('backup.version', 'Version') }} | {{ t('backup.reason', 'Reason') }} | {{ t('backup.size', 'Size') }} | {{ t('common.actions', 'Actions') }} |
|---|---|---|---|---|---|
{{ backup.name }}{% if not backup.valid %}{{ t('backup.invalid_metadata', 'Metadata could not be read') }}{% endif %} |
{{ backup.version if backup.version else t('backup.version_unknown') }} | {{ t('backup.reason_' ~ (backup.reason or 'unknown'), backup.reason or 'â') }} | {{ '%.2f'|format(backup.size / 1024 / 1024) }} MB |
{{ t('backup.none', 'No backups are available yet.') }}