{% extends "layout.html" %} {% block title %}Batch {{ batch_id }} Job {{ job_id }}{% endblock %} {% block content %}
| 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'] }} |
No attempts
{% endif %} {% if job_log %}{{ job_log['input'] }}
{% endif %}
{% if 'main' in job_log %}
{{ job_log['main'] }}
{% endif %}
{% if 'output' in job_log %}
{{ job_log['output'] }}
{% endif %}
{% endif %}
{{ job_status }}
{% endblock %}