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