{% extends "base.html" %} {% block title %} — Dashboard{% endblock %} {% block content %}
| # | 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. | |||||||