{% extends 'generic/object_detail.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load perms %} {% load plugins %} {% 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 }}
Requester {{ object.user }}
Approver {{ object.approved_by_user | placeholder }}
Approval Required? {{ object.approval_required | render_boolean }}
Approved At {{ object.approved_at | placeholder }}
Job Class {{ object.job_class }}
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 }}
Last Run At {{ object.last_run_at|placeholder }}
Total Run Count {{ object.total_run_count }}
{% endblock %} {% block content_right_page %} {% if job_class_found %}
User Inputs
{% for key, value in object.kwargs.data.items %} {% empty %} {% endfor %}
{{ labels|get_item:key }} {% if value is None %}–{% else %}{{ value }}{% endif %}
{% endif %} {% endblock %}