{% extends "layout.html" %} {% block title %}Batches{% endblock %} {% block content %}

Batches

{% if batches %} {% for batch in batches %} {% endfor %}
id type state
{{ batch['id'] }} {% if 'attributes' in batch %} {% if 'deploy' in batch['attributes'] %} deploy {% elif 'test' in batch['attributes'] %} test {% else %} unknown {% endif %} {% endif %} {% if 'state' in batch and batch['state'] %} {{ batch['state'] }} {% endif %} {% if not batch['complete'] %} running {% endif %}
{% endif %} {% endblock %}