diff --git a/atlas/templates/atlas/series_viewer.html b/atlas/templates/atlas/series_viewer.html index e76869fe..d2331315 100755 --- a/atlas/templates/atlas/series_viewer.html +++ b/atlas/templates/atlas/series_viewer.html @@ -214,6 +214,21 @@ data-bs-target="#truncate-series-modal"> Truncate series + +
| Task | +Status | +Queue | +Enqueued | +Started | +Finished | +Worker | +Error | +
|---|---|---|---|---|---|---|---|
|
+ {{ 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 %} + | +{{ 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:"" }} | +
| No tasks found for this filter. | +|||||||