{% extends "base.html" %} {% block content %} {% if job %} {% set s = job.status.value %}
{% if s in ("pending", "retrying", "waiting", "failed", "cancelled", "dead") %}{% if job.args %}args:
{{ job.args | tojson(indent=2) }}
{% endif %}{% if job.kwargs %}kwargs:
{{ job.kwargs | tojson(indent=2) }}{% endif %}
{% else %}
No arguments.
{% endif %}{{ job.result | tojson(indent=2) }}
{% elif s == "completed" %}
Completed — result not saved.
Use save_result=True on the task.
—
{% endif %}Job not found.