{% extends "admin/layout.html" %} {% block content %} {# Breadcrumb #} {# Page heading #}
Monitor pending jobs and manage failed jobs.
The jobs_failed table does not exist. Run your queue migrations first.
No failed jobs.
| ID | Queue | Job | Exception | Failed At | Actions |
|---|---|---|---|---|---|
| {{ job.id }} | {{ job.queue }} | {{ job._job_class }} |
{% if job._exception_short %}
{{ job._exception_short[:80] }}{% if job._exception_short | length > 80 %}…{% endif %}{{ job._exception_short }}
|
{{ job._failed_at_fmt }} |
|
The jobs table does not exist. Run your queue migrations first.
No jobs in queue.
| ID | Queue | Job | Status | Attempts | Created At |
|---|---|---|---|---|---|
| {{ job.id }} | {{ job.queue }} | {{ job._job_class }} | {% if job._status == 'Processing' %} Processing {% elif job._status == 'Delayed' %} Delayed {% else %} Pending {% endif %} | {{ job.attempts }} | {{ job._created_at_fmt }} |