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

Jobs

This list contains all the jobs that are currently queued. You can delete a job by clicking the delete button and filter the search by job state and queue name.

{% for queue in job_data %} {% for state in ["queued", "started", "failed", "deferred", "finished"] %} {% for job in queue[state] %} {% endfor %} {% endfor %} {% endfor %}
ID Status Name Date Options
{{ job.id }} {{ state }} {{ job.name }} {{ job.created_at }}
{% endblock %}