{% extends "layout.html" %} {% from "shared/components.html" import empty_state, status_badge %} {% block content %}

Queue: {{ queue }}

Back to Queue
Clear
{% for job in jobs %}

{{ job.id }}

{{ job.task_id }}

{{ status_badge(job.status) }}
Created {{ job.created_at }}
Run at {{ job.run_at or "-" }}
{{ job.payload_json }}
{% else %} {{ empty_state("No jobs to display", "Try another state or clear the filters.") }} {% endfor %}

Page {{ page }} of {{ total_pages }}

{% endblock %}