{% extends "admin/base_site.html" %} {% load static django_rq %} {% block title %}Job {{ job.id }} {{ block.super }}{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_title %}{% endblock %} {% block object-tools %}{% endblock %} {% block content %} {% with status=job|job_status %}

Job {{ job.id }} {{ status }}

Configuration
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 %}
{% else %}() {% endif %} {% else %}Unpickling Error{% endif %}
kwargs
{% if data_is_valid %} {% if job.kwargs %}
    {% for key, value in job.kwargs|items %}
  • {{ key }}: {{ value|force_escape }}
  • {% endfor %}
{% else %}- {% endif %} {% else %}Unpickling Error{% endif %}
meta
{{ job.meta|default:"-" }}
{% if dependencies %}
Depends on
{% for dependency in dependencies %} {% endfor %}
Job ID Callable
{{ dependency.0 }} {% if dependency.1 %}{{ dependency.1.func_name }}{% else %}Deleted{% endif %}
{% endif %} {% if dependents %}
Dependents
{% for dependent in dependents %} {% endfor %}
Job ID Callable
{{ dependent.0 }} {% if dependent.1 %}{{ dependent.1.func_name }}{% else %}Deleted{% endif %}
{% endif %} {% if exc_info and job.exc_info %}
Exception
{{ job.exc_info }}
{% endif %} {% if job.legacy_result %}
Result
{{ job.result }}
{% endif %}
{% if job.is_started %}
{% csrf_token %}
{% endif %} {% if job.is_failed %}
{% csrf_token %}
{% endif %} {% if not job.is_queued and not job.is_failed %}
{% csrf_token %}
{% endif %} Delete
{% if job.results %}
{% for result in job.results %} {% endfor %}
Result Type Started Duration
{{ result.id }} {% with type=result.type.name %} {{ type }} {% endwith %} {{ result.created_at|timestamp_tooltip }} View →
{% endif %}
{% endwith %} {% endblock %}