{% extends 'base/layout.html' %} {% block title %}UniFi Sync Runs{% endblock %} {% block content %}
Filters
{{ form.status.label_tag }} {{ form.status }}
{{ form.q.label_tag }} {{ form.q }}
{{ form.limit.label_tag }} {{ form.limit }}
Run History Total: {{ total }}
{% for run in runs %} {% empty %} {% endfor %}
IDCreatedStatusModeDurationControllersSitesDevicesSummary
#{{ run.pk }} {{ run.created }} {{ run.get_status_display }} {% if run.dry_run %}Dry run{% else %}Sync{% endif %}{% if run.cleanup_requested %} + cleanup{% endif %} {{ run.duration_ms }} ms {{ run.controllers_total }} {{ run.sites_total }} {{ run.devices_total }} {{ run.summary|default:'-' }}
No runs found.
{% endblock %}