{% extends "base.html" %} {% load static i18n %} {% block content %}
| ID | Task Name | Status | Created At | Scheduled Run | Last Run | Attempts | Priority | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ task.id }} | {{ task.task_name }} | {% if task.locked_at %} Running {% elif task.last_run_at and task.has_error %} Failed {% elif task.last_run_at %} Completed {% else %} Pending {% endif %} | {{ task.created_at|date:"Y-m-d H:i" }} | {{ task.run_at|date:"Y-m-d H:i" }} | {% if task.last_run_at %} {{ task.last_run_at|date:"Y-m-d H:i" }} {% else %} - {% endif %} | {{ task.attempts }} | {{ task.priority }} | {% comment %}
| {% endcomment %}
| No tasks found | ||||||||