{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav, button, filter_badge %} {% block title %}Backups Management - Admin{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': 'Admin', 'url': url_for('admin.admin_dashboard')}, {'text': 'Backups Management'} ] %} {{ page_header( icon_class='fas fa-database', title_text='Backups Management', subtitle_text='Create, download, and restore database backups', breadcrumbs=breadcrumbs, actions_html=None ) }}
Create a new backup of your database. The backup will be downloaded immediately.
Restore your database from a backup file. This will replace all current data.
Go to Restore PageBackups stored on the server
| Filename | Created | Size | Actions |
|---|---|---|---|
|
{{ backup.filename }}
|
{{ backup.created|user_datetime('%Y-%m-%d %H:%M:%S') }} | {{ backup.size_mb }} MB | Download |
No backups found
Create your first backup using the button above
backups/ directory