{% extends "base.html" %} {% block title %}Dashboard - Backup Monitor{% endblock %} {% block content %}

Backup Dashboard

Monitor and manage your backup services

{{ data.summary.successful }}

Successful

{{ data.summary.partial }}

Partial

{{ data.summary.failed }}

Failed

{{ data.summary.total }}

Total Services

{% for service in data.services %}
{{ service.service | title }}
{{ service.status | title }}

{{ service.description }}

{% if service.start_time %}
Last Run: {{ service.start_time | default('Never') }}
{% endif %} {% if service.duration_seconds %}
Duration: {{ (service.duration_seconds / 60) | round(1) }} minutes
{% endif %} {% if service.files_processed %}
Files: {{ service.files_processed }}
{% endif %} {% if service.total_size_bytes %}
Size: {{ (service.total_size_bytes / 1024 / 1024 / 1024) | round(2) }}GB
{% endif %} {% if service.current_operation %}
{{ service.current_operation }}
{% endif %} {% if service.message and service.status != 'success' %}
{{ service.message }}
{% endif %}
{% endfor %}
{% if not data.services %}

No backup services found

No backup metrics are available at this time.

{% endif %}
{% endblock %}