{% 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 %}
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 }} |
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 }} |
{{ labels|get_item:key }} | {% if value is None %}–{% else %}{{ value }} {% endif %} |
— |