{% extends "base.html" %}{% block content %}

This list contains all the jobs that are currently queued. Filter the search by job state and queue name. Each job can be deleted or requeued by clicking the corresponding button.

{% if access == "admin" %}{% endif %} {% for queue in job_data %} {% for state in ["queued", "started", "failed", "deferred", "scheduled", "finished"] %} {% for job in queue[state] %} {% if access == "admin" %} {% endif %} {% endfor %} {% endfor %} {% endfor %}
ID
Status
Name
Created AtOptions
{{ job.id }} {{ state }} {{ job.name }} {{ job.created_at }}
{% if state == "failed" %} {% endif %}
{% endblock %}