{% extends "pobsync_backend/base.html" %} {% block title %}pobsync dashboard{% endblock %} {% block content %} {% if can_manage_control_panel %} {% if not global_config or not counts.hosts %}

Setup

{% if not global_config %}

No default global config exists yet. Create it first so discovery, backups, and retention know where pobsync stores snapshots.

Create global config
{% elif not counts.hosts %}

Global config is ready. Add the first host to make this dashboard useful.

Add first host
{% endif %}
{% endif %} {% endif %}
{% include "pobsync_backend/partials/dashboard_priority.html" %}
Hosts
{{ counts.enabled_hosts }}/{{ counts.hosts }}
Schedules
{{ counts.enabled_schedules }}/{{ counts.schedules }}
Snapshots
{{ counts.snapshots }}
Runs
{{ counts.runs }}
Warnings
{{ counts.warning_runs }}
Failed
{{ counts.failed_runs }}
{% include "pobsync_backend/partials/dashboard_hosts.html" %}
{% endblock %}