{% extends "admin/base_site.html" %}
{% load url from future %}
{% block breadcrumbs %}
{% endblock %}
{% block content_title %}Job Info
{% endblock %}
{% block content %}
| ID: |
{{ job.id }} |
| Queue: |
{{ job.origin }} |
| Timeout: |
{{ job.timeout }} |
| Result TTL: |
{{ job.result_ttl }} |
| Created: |
{{ job.created_at }} |
| Queued: |
{{ job.enqueued_at }} |
| Status: |
{{ job.get_status }} |
| Callable: |
{{ job.func_name }} |
{% if job.args %}
| Args: |
{% for arg in job.args %}
- {{ arg }}
{% endfor %}
|
{% endif %}
{% if job.kwargs %}
| Kwargs: |
{% for key, value in job.kwargs.items %}
- {{ key }}: {{ value|escape }}
{% endfor %}
|
{% endif %}
{% if job.exc_info %}
| Exception: |
{{ job.exc_info|linebreaks }} |
{% endif %}
{% endblock %}