{% 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 %}| 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 %}
|