{% extends "base.html" %} {% load static %} {% load django_htmx %} {% block content_container_class %}container-fluid content-wide px-3{% endblock %} {% block title %} Atlas Task Overview {% endblock title %} {% block content %}

Atlas Task Overview

{% if backend_missing %}
django_tasks_db backend is not available in this environment. Install and migrate it to see task records.
{% endif %}
Active
{{ counts.active }}
Completed
{{ counts.completed }}
Failed
{{ counts.failed }}
{% csrf_token %}
{% for task in tasks %} {% if task.traceback %} {% endif %} {% empty %} {% endfor %}
Task Status Generated Series Queue Enqueued Started Finished Worker Error Actions
{{ task.task_path }}
{{ task.id }}
{% if task.status == "FAILED" %} {{ task.status }} {% elif task.status == "SUCCESSFUL" %} {{ task.status }} {% elif task.status == "RUNNING" or task.status == "READY" %} {{ task.status }} {% else %} {{ task.status }} {% endif %} {% if task.generated_series %} {% for series in task.generated_series %} {{ series.description }} {% endfor %} {% else %} - {% endif %} {{ task.queue_name }} {{ task.enqueued_at|date:"Y-m-d H:i:s" }} {{ task.started_at|date:"Y-m-d H:i:s" }} {{ task.finished_at|date:"Y-m-d H:i:s" }} {{ task.worker_ids }} {{ task.exception_class_path|default:"" }} {% if task.traceback %} {% else %} - {% endif %}
Full traceback
{{ task.traceback }}
No tasks found for this filter.
{% endblock content %}