{% extends 'base/layout.html' %} {% load helpers %} {% block content %}
All sync jobs (manual and scheduled) with filtering and pagination.
Total Jobs
Success
Pending Review
Running
Partial
Failed
| Timestamp | Status | Mode | Organizations | Networks | Devices | VLANs | Prefixes | Duration | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ log.timestamp|date:"Y-m-d H:i:s" }} | {% if log.status == 'success' %} SUCCESS {% elif log.status == 'pending_review' %} PENDING_REVIEW {% elif log.status == 'running' %} RUNNING {% elif log.status == 'partial' %} PARTIAL {% elif log.status == 'failed' %} FAILED {% elif log.status == 'dry_run' %} DRY_RUN {% else %} {{ log.status|upper }} {% endif %} | {% if log.sync_mode == 'auto' %} AUTO {% elif log.sync_mode == 'review' %} REVIEW {% elif log.sync_mode == 'dry_run' %} DRY RUN {% else %} {{ log.sync_mode|default:"N/A"|upper }} {% endif %} | {{ log.organizations_synced|default:"0" }} | {{ log.networks_synced|default:"0" }} | {{ log.devices_synced|default:"0" }} | {{ log.vlans_synced|default:"0" }} | {{ log.prefixes_synced|default:"0" }} | {% if log.duration_seconds %} {{ log.duration_seconds|floatformat:2 }}s {% else %} - {% endif %} | View Details |
| No jobs found | |||||||||