{% extends 'base.html' %} {% load helpers %} {% load form_helpers %} {% load log_levels %} {% block title %}{{ job }} - Approval Request{% endblock %} {% block content %}

{{ job }}

{% if job.read_only %} {% endif %}

{{ job.description }}

{% if not perms.extras.run_job %}
You do not have permission to run & approve jobs.
{% endif %}
{% if job_form.non_field_errors or schedule_form.non_field_errors %}
Errors
{{ job_form.non_field_errors }} {{ schedule_form.non_field_errors }}
{% endif %} {% csrf_token %} {% if job_form.requires_input %}
Job Data
{% render_form job_form %}
{% else %}
This job does not require any input to run.
{% render_form job_form %} {% endif %}
Approval Request
{{ scheduled_job.user.username|placeholder }}
{{ scheduled_job.start_time|placeholder }}
Cancel

{{ job.filename }}

{{ job.source }}
{% endblock %} {% block javascript %} {% endblock %}