{% extends "base.html" %} {% load static i18n %} {% block content %}

Background Tasks

Total Tasks: {{ page_obj.paginator.count }}
Refresh
{% for task in page_obj %} {% comment %} {% endcomment %} {% empty %} {% endfor %}
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 }}
No tasks found
{% if page_obj.paginator.num_pages > 1 %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}