{% extends "layout.html" %} {% block title %}Batches{% endblock %} {% block content %}
| ID | Name | State | Jobs | Pending | Succeeded | Failed | Cancelled | Cost | ||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ batch['id'] }} | {% if 'attributes' in batch and 'name' in batch['attributes'] and batch['attributes']['name'] is not none %} {{ batch['attributes']['name'] }} {% endif %} | {{ batch['state'] }} | {{ batch['n_jobs'] }} | {{ batch['n_jobs'] - batch['n_completed'] }} | {{ batch['n_succeeded'] }} | {{ batch['n_failed'] }} | {{ batch['n_cancelled'] }} | {% if 'cost' in batch and batch['cost'] is not none %} {{ batch['cost'] }} {% endif %} | {% if not batch['complete'] and batch['state'] != 'Cancelled' %}{% endif %} |