Job {{ job.id }} {{ status }}
Configuration
Queue
Status
{{ status }}
Timeout
{{ job.timeout|default:"—" }}{% if job.timeout %}s{% endif %}
Result TTL
{{ job.result_ttl|default:"—" }}
Timestamps
Created
{{ job.created_at|timestamp_tooltip }}
Enqueued
{{ job.enqueued_at|timestamp_tooltip }}
Last started
{{ job.started_at|timestamp_tooltip }}
Last ended
{{ job.ended_at|timestamp_tooltip }}
Payload
Callable
{{ job|show_func_name }}
args
{% if data_is_valid %}
{% if job.args %}
-
{% for arg in job.args %}
- {{ arg|force_escape }} {% endfor %}
kwargs
{% if data_is_valid %}
{% if job.kwargs %}
-
{% for key, value in job.kwargs|items %}
- {{ key }}: {{ value|force_escape }} {% endfor %}
meta
{{ job.meta|default:"-" }}
Depends on
| Job ID | Callable |
|---|---|
| {{ dependency.0 }} | {% if dependency.1 %}{{ dependency.1.func_name }}{% else %}Deleted{% endif %} |
Dependents
| Job ID | Callable |
|---|---|
| {{ dependent.0 }} | {% if dependent.1 %}{{ dependent.1.func_name }}{% else %}Deleted{% endif %} |
Exception
{{ job.exc_info }}
Result
{{ job.result }}
{% if job.is_started %}
{% endif %}
{% if job.is_failed %}
{% endif %}
{% if not job.is_queued and not job.is_failed %}
{% endif %}
Delete
{% if job.results %}
| Result | Type | Started | Duration | |
|---|---|---|---|---|
| {{ result.id }} | {% with type=result.type.name %} {{ type }} {% endwith %} | {{ result.created_at|timestamp_tooltip }} | — | View → |