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

Filter jobs by state and queue. Hover over timestamps for the full date, over the job name for the full name, or over the short ID for the full job id.

{% if access == "admin" %} {% endif %}
{% for queue in job_data %} {% for state in ["queued", "started", "failed", "deferred", "scheduled", "finished", "canceled", "stopped"] %} {% for job in queue[state] %} {% endfor %} {% endfor %} {% endfor %}
Name
Status
Queue
Created Actions
{{ job.name }} {{ job.id[:8] }}
{{ state }} {{ queue.queue_name }}
{{ job.created_at }}
{% if job.ended_at %}
{{ "Failed" if state == "failed" else "Ended" }} {{ job.ended_at }}
{% endif %}
{% if access == "admin" and state == "failed" %} {% else %} {% endif %} {% if access == "admin" %} {% else %} {% endif %}
{% endblock %}