{% extends "base.html" %} {% block title %} — Dashboard{% endblock %} {% block content %}
Total Backups
{{ total }}
Last Success
{{ last_ok['started_at'] | fmtdt if last_ok else '—' }}
{% if last_ok %}
{{ last_ok['total_records'] or 0 | int }} records
{% endif %}
Last Full Backup
{{ last_full['started_at'] | fmtdt if last_full else '—' }}
{% if last_full %}
{{ '%.1f' | format(last_full['archive_size_mb'] or 0) }} MB
{% endif %}
Next Incremental
{{ next_incr or 'Not scheduled' }}
Full: {{ next_full_run or 'Not scheduled' }}
Recent Backups View All
{% for r in recent %} {% else %} {% endfor %}
# Started Type Trigger Companies Records Size Status
{{ r['id'] }} {{ r['started_at'] | fmtdt }} {% if r['backup_type'] == 'full' %} Full {% else %} Incr {% endif %} {{ r['triggered_by'] }} {% if r['companies'] %} {{ r['companies'] | replace('["','') | replace('"]','') | replace('","',' · ') }} {% else %}—{% endif %} {{ r['total_records'] or '—' }} {% if r['archive_size_mb'] %}{{ '%.1f' | format(r['archive_size_mb']) }} MB{% else %}—{% endif %} {% if r['status'] == 'success' %} OK {% elif r['status'] == 'failed' %} Failed {% else %} Running {% endif %}
No backups yet — click Full Backup to start.
{% endblock %}