{% extends "aggregator/base.html" %} {% block head %} {% endblock %} {% block content %}

Active Tasks

{% if active_tasks %}
{% for task in active_tasks %} {% endfor %}
Task ID Name, Args State Worker Progress %
{{ task.task_id }} {{ task.name }}, {{ task.args }}
{{ task.worker }}
{% else %}

No active tasks at this time.

{% endif %}

Reserved Tasks

{{ jobs }} jobs are in the queue, these are the reserved (prefetched) ones: {% if active_tasks %}
{% for task in reserved_tasks %} {% endfor %}
Task ID Name Args
{{ task.task_id }} {{ task.name }} {{ task.args }}
{% else %}

No reserved tasks at this time.

{% endif %} {% if user.is_superuser %}

Admin Commands

{% csrf_token %}
{% endif %} {% endblock %}