{% extends "base.html" %} {% block content %}
Job ID
{{ job.job-id }}
Queue
{{ job.queue }}
Function
{{ job.fn-path }}
Arguments
{{ job.args|json }}
Status
{{ job.status }}
Created
{{ job.created-at|date:"yyyy-MM-dd HH:mm:ss z" }}
{% ifequal job.status "complete" %}
Completed
{{ job.stopped-at|date:"yyyy-MM-dd HH:mm:ss z" }}
{% endifequal %} {% ifequal job.status "failed" %}
Last Failure
{{ job.stopped-at|date:"yyyy-MM-dd HH:mm:ss z" }}
Failure Reason
{{ job.reason }}
{% with job-id=job.job-id %} {% include "components/requeue_form.html" %} {% endwith %} {% endifequal %} {% endblock %}