{% extends 'generic/object_retrieve.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load perms %} {% load plugins %} {% load tz %} {% block buttons %} {% plugin_buttons object %} {% if user|can_delete:object %} {% delete_button object %} {% endif %} {% endblock buttons %} {% block content %} {% if not job_class_found %}
This job source for this scheduled job is no longer installed. This scheduled job will fail to run unless reinstalled at the original location.
{% endif %} {{ block.super }} {% endblock content %} {% block content_left_page %}
Scheduled Job
Name {{ object.name }}
Description {{ object.description }}
Task {{ object.task }}
Requester {{ object.user }}
Approver {{ object.approved_by_user | placeholder }}
Approval Required? {{ object.approval_required | render_boolean }}
Approved At {{ object.approved_at | placeholder }}
Scheduling
Enabled? {{ object.enabled | render_boolean }}
Interval {{ object.interval }} {% if object.interval == "custom" %}({{ object.crontab }}){% endif %}
One Off? {{ object.one_off | render_boolean }}
Start Time {{ object.start_time|timezone:object.time_zone|date:'Y-m-d H:i:s T' }} {% if default_time_zone != object.time_zone %}
{{ object.start_time|timezone:default_time_zone|date:'Y-m-d H:i:s T' }} {% endif %}
Last Run At {% if object.last_run_at %} {{ object.last_run_at|timezone:object.time_zone|date:'Y-m-d H:i:s T' }} {% if default_time_zone != object.time_zone %}
{{ object.last_run_at|timezone:default_time_zone|date:'Y-m-d H:i:s T' }} {% endif %} {% else %} {{ object.last_run_at|placeholder }} {% endif %}
Total Run Count {{ object.total_run_count }}
{% endblock %} {% block content_right_page %} {% if job_class_found %}
User Inputs
{% for key, value in object.kwargs.items %} {% empty %} {% endfor %}
{{ labels|get_item:key }} {% if value is None %}–{% else %}{{ value }}{% endif %}
{% endif %} {% endblock %}