Back to Scheduler Status

{{ job.name }}

Current Execution

{{ ''.join(job.current_execution.lines) }}

Past Executions

{% for execution in job.executions|reverse %}
{% if execution.return_code == 0 %}SUCCESS{% else %}ERROR{% endif %}
{{ ''.join(execution.lines) }}
{% endfor %}