{%extends "adm/admin_base.html" %} {%block title%}Scheduled Job{%endblock%} {%block extrahead %} {%endblock%} {%block layoutblock %}

{{job.description}}

{% csrf_token%} {%include "confreg/admin_backend_form_content.html" with cancelurl="../" %}

Next run

Next scheduled run: {%if job.nextrun%}{{job.nextrun}} (in {{job.nextrun|timeuntil}}){%else%}No execution currently scheduled{%endif%}

{% csrf_token%}

History

{%if job.lastrun and not job.lastrunsuccess%}
{% csrf_token%}

{%endif%} {%for h in history.object_list %} {%endfor%}
Time Status Runtime Output
{{h.time}} ({{h.time|timesince}} ago) {{h.success|yesno:"Success,Failure"}} {{h.runtime}} {{h.first_output}}
{{h.output|linebreaksbr}}
{%include "adm/include/paginator.html" with pageobjects=history %} Return to overview
{%endblock%}