{# templates/scheduled_tasks/task_list.html #} {% extends "template_base.html" %} {% load static %} {% block js %} {% endblock %} {% block title %}Scheduled Tasks{% endblock %} {% block content %}

Scheduled Tasks




{% if task_list_future %} {% for task in task_list_future %} {% endfor %}
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 }}
{% else %}

(no tasks found)

{% endif %}

Completed Tasks

Display the most recently completed tasks

{% if task_list_completed %} {% for task in task_list_completed %} {% endfor %}
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 }}
{% else %}

(no tasks found)

{% endif %}

All form fields are required.

















{% endblock %}