{% extends "layout.html" %} {% block title %}Batch {{ batch['id'] }}{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ name }}: {{ value }}
{% endfor %} {% endif %}ID | Name | State | Exit Code | Duration | Cost |
---|---|---|---|---|---|
{{ job['job_id'] }} | {% if 'name' in job and job['name'] is not none %} {{ job['name'] }} {% endif %} | {{ job['state'] }} | {% if 'exit_code' in job and job['exit_code'] is not none %} {{ job['exit_code'] }} {% endif %} | {% if 'duration' in job and job['duration'] is not none %} {{ job['duration'] }} {% endif %} | {% if 'cost' in job and job['cost'] is not none %} {{ job['cost'] }} {% endif %} |