{% extends "layout.html" %} {% block title %}Batch {{ batch_id }} Job {{ job_id }}{% endblock %} {% block content %}

Batch {{ batch_id }} Job {{ job_id }}

Attempts

{% if attempts %} {% for attempt in attempts %} {% endfor %}
Attempt ID Instance Start End Duration Reason
{{ attempt['attempt_id'] }} {{ attempt['instance_name'] }} {% if 'start_time' in attempt and attempt['start_time'] is not none %} {{ attempt['start_time'] }} {% endif %} {% if 'end_time' in attempt and attempt['end_time'] is not none %} {{ attempt['end_time'] }} {% endif %} {% if 'duration' in attempt and attempt['duration'] is not none %} {{ attempt['duration'] }} {% endif %} {% if 'reason' in attempt and attempt['reason'] is not none %} {{ attempt['reason'] }} {% endif %}
{% else %}

No attempts

{% endif %} {% if job_log %}

Log

{% if 'input' in job_log %}

Input

{{ job_log['input'] }}
{% endif %} {% if 'main' in job_log %}

Main

{{ job_log['main'] }}
{% endif %} {% if 'output' in job_log %}

Output

{{ job_log['output'] }}
{% endif %} {% endif %}

Status

{{ job_status }}
{% endblock %}