{% extends "admin/base_site.html" %} {% load i18n static %} {% block title %}{{ title }} - {{ site_title|default:_('Django site admin') }}{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}

{{ title }}

{{ total_tasks }}
Total Sync Tasks
{{ successful_tasks }}
Successful Tasks
{{ failed_tasks }}
Failed Tasks
{{ pending_tasks }}
Pending Tasks

Success Rates

Overall Success Rate

{{ success_rate|floatformat:1 }}%

Last 24 Hours

{{ last_24h_success_rate|floatformat:1 }}%

Recent Sync Tasks

{% for task in recent_tasks %}
{{ task.name }}
{% if task.started %} Started: {{ task.started|date:"Y-m-d H:i:s" }} {% endif %} {% if task.stopped %} • Duration: {{ task.time_taken|floatformat:2 }}s {% endif %} {% if task.group %} • Group: {{ task.group }} {% endif %}
{% if task.success %}Success{% elif task.stopped %}Failed{% else %}Pending{% endif %}
{% empty %}
No sync tasks found
Sync tasks will appear here once they are executed.
{% endfor %}

Quick Actions

View All Tasks Manage Schedules Configure Sources
{% endblock %}