{% extends "base.html" %} {% block title %}Backup Details - Hop3 Dashboard{% endblock %} {% block content %}
Detailed information about this backup
All checksums are valid. This backup is ready to restore.
Some checksums do not match. This backup may be corrupted.
| Addon Name | Type | Size |
|---|---|---|
| {{ service.name }} | {{ service.type }} | {% set size_bytes = service.size_bytes %} {% if size_bytes < 1024 %} {{ size_bytes }} B {% elif size_bytes < 1048576 %} {{ "%.1f"|format(size_bytes / 1024) }} KB {% elif size_bytes < 1073741824 %} {{ "%.1f"|format(size_bytes / 1048576) }} MB {% else %} {{ "%.1f"|format(size_bytes / 1073741824) }} GB {% endif %} |
| Status | File | Checksum |
|---|---|---|
| {% if file.valid %} ✓ {% else %} ✗ {% endif %} | {{ file.filename }} | {{ file.checksum }} |