{# templates/scheduled_tasks/task_list.html #} {% extends "template_base.html" %} {% load static %} {% block js %} {% endblock %} {% block title %}Scheduled Tasks{% endblock %} {% block content %}
| id | Task Name | Task Parameters | Priority | Run At | Repeat | Repeat Until | Attempts | Last Error |
|---|---|---|---|---|---|---|---|---|
| {{ task.verbose_name }} | {{ task.task_parameters }} | {{ task.priority }} | {{ task.run_at }} | {{ task.repeat }} | {{ task.repeat_until }} | {{ task.attempts }} | {{ task.last_error }} |
(no tasks found)
{% endif %}| id | Task Name | Task Parameters | Output | Ran At | Repeat | Repeat Until | Attempts | Last Error |
|---|---|---|---|---|---|---|---|---|
| {{ task.id }} | {{ task.verbose_name }} | {{ task.task_parameters }} | {{ task.run_at }} | {{ task.repeat }} | {{ task.repeat_until }} | {{ task.attempts }} | {{ task.last_error }} |
(no tasks found)
{% endif %}All form fields are required.