{% extends 'base.html' %} {% load static %} {% load humanize %} {% block title %}System Backup - HAVEN GRAZURI ADVANCE{% endblock %} {% block content %}

💾 System Backup

Create and manage system backups

Back to Settings
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

Create New Backup

ℹ️

What's Included in the Backup:

  • Complete database backup (all tables and data)
  • All media files (documents, images, uploads)
  • Static files (if configured)
  • System configuration information
{% csrf_token %}

This may take a few minutes depending on the size of your data.

{% if backup_history %}

Backup History

{% for backup in backup_history %} {% endfor %}
Filename Size Created Actions
{{ backup.filename }}
{{ backup.size_mb }} MB {{ backup.created|date:"M d, Y H:i" }} ⬇️ Download
{% else %}
📥

No backup history found. Create your first backup above.

{% endif %}
{% endblock %}