{% extends "layout.html" %} {% block title %}Batch {{ batch['id'] }}{% endblock %} {% block content %}

Batch {{ batch['id'] }}

{% if 'attributes' in batch %}
{% for name, value in batch['attributes'].items() %}
{{ name }}: {{ value }}
{% endfor %} {% endif %}

Jobs

{% for job in jobs %} {% endfor %}
id name state exit_code duration
{{ job['job_id'] }} {{ job['name'] }} {{ job['state'] }} {% if 'exit_code' in job and job['exit_code'] is not none %} {% if job['exit_code'] == 0 %} Success 🎉 {% else %} Failure 🤷‍♀️ {% endif %} ({{ job['exit_code'] }}) {% endif %} {% if 'duration' in job and job['duration'] is not none %} {{ job['duration'] }} {% endif %}
{% endblock %}