{% extends 'dashboard/base.html' %} {% block title %}Database Backup{% endblock %} {% block content %}

Database Backup

Create and download full backups of your website database. Limited to {{ max_per_day }} backups a day to save server resources.

Run a Backup

{% if runs_remaining > 0 %} You have {{ runs_remaining }} of {{ max_per_day }} backup{{ max_per_day|pluralize }} left today. {% else %} You've used all {{ max_per_day }} backups for today. The limit resets at midnight. {% endif %}

0 %}data-sp-confirm="This will create a new database backup now. Continue?" data-sp-confirm-title="Run backup now?"{% endif %}> {% csrf_token %}

Backup History

{% for b in backups %} {% empty %} {% endfor %}
DateStatusSizeTriggered By
{{ b.created_at|date:"M j, Y g:i A" }} {% if b.status == 'success' %}Success {% elif b.status == 'running' %}Running {% else %}Failed{% endif %} {% if b.size_bytes %}{{ b.size_bytes|filesizeformat }}{% else %}—{% endif %} {{ b.triggered_by.email|default:"—" }} {% if b.status == 'success' %} Download {% endif %}
{% csrf_token %}
No backups yet. Run your first backup above.
{% endblock %}