{% if backups %}

Backups

{{ backups | length }} backup{{ 's' if backups | length != 1 else '' }}
{% for b in backups %}

{{ b.name or 'Unnamed' }}

Created: {{ b.created_at or 'Unknown' }} {% if b.size_bytes %} · {{ '%.1f' % (b.size_bytes / 1048576) }} MB {% endif %}
{% endfor %} {% else %}

No backups found. Create one using the sidebar button.

{% endif %}