{% extends 'base.html' %} {% block title %}{{ _('Restore Backup') }}{% endblock %} {% block content %}

{{ _('Restore Backup') }}

{{ _('Danger Operation') }}
{{ _('Back to Dashboard') }}
{{ _('Upload Backup Archive (.zip)') }}
{{ _('Restoring a backup will overwrite your current database and files. Ensure you have a recent backup before proceeding.') }}
{% if progress %}
{{ _('Status:') }} {{ progress.status|title }}
{{ progress.percent }}%
{{ progress.message }}
{% endif %}
{{ _('Select a .zip archive previously created via the Backup action.') }}
{{ _('Cancel') }}
{{ _('Safety Tips') }}
  • {{ _('Verify the backup archive integrity before restoring.') }}
  • {{ _('Ensure no active writes are occurring during restore.') }}
  • {{ _('Keep a copy of the current data in case you need to roll back.') }}
  • {{ _('After restore, review settings and re-run migrations if required.') }}
{% endblock %}