{% extends "layout.html" %} {% block title %}Batch {{ batch_id }} Job {{ job_id }}{% endblock %} {% block content %}
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 %} |
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 %}