{% extends 'dashboard/base.html' %} {% block title %}Database Backup{% endblock %} {% block content %}
{% 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 %}
| Date | Status | Size | Triggered 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 %} |
| No backups yet. Run your first backup above. | ||||