{% extends "base.html" %} {% block title %}pgqueuer · job {{ job_id }}{% endblock %} {% block content %}
| Entrypoint | {{ job.entrypoint }} |
|---|---|
| Status | {{ job.status }} |
| Priority | {{ job.priority }} |
| Attempts | {{ job.attempts }} |
| Created | {{ job.created | dt }} |
| Updated | {{ job.updated | dt }} |
| Heartbeat | {{ job.heartbeat | dt }} |
| Execute after | {{ job.execute_after | dt }} |
| Worker | {{ job.queue_manager_id or "–" }} |
No payload.
{% else %}{{ payload.text }}
{% endif %}
{% if job.headers %}
{{ job.headers | tojson(indent=2) }}
{% endif %}
{% else %}
This job is no longer in the queue table; only its log history remains.
{% endif %} {% set exceptions = history | selectattr("traceback") | list %} {% if exceptions %}{{ h.traceback.traceback }}
{% if h.traceback.additional_context %}
{{ h.traceback.additional_context | tojson(indent=2) }}
{% endif %}
| When | Status | |
|---|---|---|
| {{ h.created | dt }} | {{ h.status }} | {% if h.traceback %} exception {% endif %} |
No log history for this job.
{% endif %} {% endblock %}