{% extends "admin/scheduler/scheduler_base.html" %} {% load static scheduler_tags %} {% load static %} {% block title %}Job {{ job.id }} {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_title %}

Job {{ job.id }} {% if job.is_scheduled_job %} Link to scheduled job {% endif %}

{% endblock %} {% block content %}
{{ job.origin }}
{{ job.timeout }}
{{ job.result_ttl }}
{{ job.created_at|date:"Y-m-d, H:i:s"|default:"-" }}
{{ job.enqueued_at|date:"Y-m-d, H:i:s"|default:"-" }}
{{ job.started_at|date:"Y-m-d, H:i:s"|default:"-" }}
{{ job.ended_at|date:"Y-m-d, H:i:s"|default:"-" }}
{{ job.get_status }}
{% if data_is_valid %} {{ job.func_name }}( {% if job.args %} {% for arg in job.args %} {{ arg|force_escape }}, {% endfor %} {% endif %} {% for key, value in job.kwargs.items %} {{ key }}={{ value|force_escape }}, {% endfor %}) {% else %} Unpickling Error {% endif %}
{{ job | show_func_name }}
{% for k in job.meta %}
{{ job.meta | get_item:k }}
{% endfor %}
{% if dependency_id %} {{ dependency_id }} {% endif %}
{% if exc_info %}
{% if job.exc_info %}{{ job.exc_info|linebreaks }}{% endif %}
{% endif %}
{{ job.result | default:'-' }}
{% if job.is_started %} {% endif %} {% if job.is_failed %} {% endif %} {% if not job.is_queued and not job.is_failed %} {% endif %}
{% for result in job.results %}

Result {{ result.id }}

{% endfor %}
{% endblock %}