{% extends 'base/layout.html' %} {% load i18n %} {% load static %} {% block title %}Sync Logs{% endblock %} {% block content %}

WhatsUp Gold Sync Logs

Sync Statistics
{{ completed_syncs }}
Completed
{{ failed_syncs }}
Failed
{{ running_syncs }}
Running
Quick Actions
Manage synchronization tasks
Sync History ({{ table.rows|length }})
{% if table.rows %}
{% load django_tables2 %} {% render_table table %}
{% else %}

No Sync Logs Found

{% if request.GET.connection or request.GET.sync_type or request.GET.status %} No sync logs match your current filters. Try adjusting your search criteria. {% else %} No synchronization activities have been logged yet. Start a sync operation from a WhatsUp Gold connection to see logs here. {% endif %}

Start a Sync
{% endif %}
Status Legend
Running Sync operation in progress
Completed Sync finished successfully
Failed Sync encountered errors
Cancelled Sync was stopped by user
{% csrf_token %} {% endblock %}