{% 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 Intance Start End Duration Reason
{{ attempt['attempt_id'] }} {{ attempt['instance_name'] }} {% if 'start_time' in attempt %} {{ attempt['start_time'] }} {% endif %} {% if 'end_time' in attempt %} {{ attempt['end_time'] }} {% endif %} {% if 'duration' in attempt %} {{ attempt['duration'] }} {% endif %} {{ attempt['reason'] }}
{% 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 %}