{% extends "taskito/admin/base.html" %} {% load taskito_admin %} {% block taskito_content %}
| ID | Task | Queue | Status | Retries | Created |
|---|---|---|---|---|---|
| {{ job.id }} | {{ job.task_name }} | {{ job.queue }} | {{ job.status }} | {{ job.retry_count }}/{{ job.max_retries }} | {{ job.created_at|ms_datetime }} |
{% if page > 1 %} Previous {% endif %} Page {{ page }} {% if has_next %} Next {% endif %}
{% else %}No jobs found.
{% endif %} {% endblock %}