{% extends "pobsync_backend/base.html" %} {% block title %}pobsync dashboard{% endblock %} {% block content %}

Dashboard

Hosts
{{ counts.enabled_hosts }}/{{ counts.hosts }}
Schedules
{{ counts.enabled_schedules }}/{{ counts.schedules }}
Snapshots
{{ counts.snapshots }}
Runs
{{ counts.runs }}
Running
{{ counts.running_runs }}
Failed
{{ counts.failed_runs }}

Hosts

{% for host in hosts %} {% empty %} {% endfor %}
Host Address Enabled Snapshots Runs Retention
{{ host.host }} {{ host.address }} {{ host.enabled|yesno:"yes,no" }} {{ host.snapshot_count }} {{ host.run_count }} d{{ host.retention_daily }} w{{ host.retention_weekly }} m{{ host.retention_monthly }} y{{ host.retention_yearly }}
No hosts configured yet.

Latest Runs

{% for run in latest_runs %} {% empty %} {% endfor %}
Host Status Started Ended Snapshot Rsync
{{ run.host.host }} {{ run.status }} {{ run.started_at|default:"" }} {{ run.ended_at|default:"" }} {% if run.snapshot %}{{ run.snapshot.dirname }}{% else %}{{ run.snapshot_path }}{% endif %} {{ run.rsync_exit_code|default:"" }}
No backup runs recorded yet.
{% endblock %}