{% extends "base.html" %} {% block content %}

{{ domains | length}} domains, {{ total_task_count }} tasks, {{ agents | length }} agent{% if agents | length > 1 %}s{% endif %}

{% for (domain, status) in domains %} {% endfor %}
Domain Current status Last check
{{ domain }} {% if status == "ok" %}✅ OK {% elif statuts == "warning"%}⚠ Warning{% elif status == "critical"%}❌ Critical{% elif status == "to-process" %}⏱︎ Waiting for the jobs{% endif %} {{ last_checks.get(domain) }}
{% endblock %}