{% from "job-table.html" import job_table with context %} {% extends "layout.html" %} {% block title %}Batch {{ batch['id'] }}{% endblock %} {% block head %} {% endblock %} {% block content %}

Batch {{ batch['id'] }}

Timing

{% for field in ['time_created', 'time_completed', 'duration'] %} {% if field in batch %}
{{ field }}: {{ batch[field] }}
{% endif %} {% endfor %}
{% if 'attributes' in batch %}

Attributes

{% for name, value in batch['attributes'].items() %} {% if name == "pr" and wb is not none %}
{{ name }}: {{ value }}
{% else %}
{{ name }}: {{ value }}
{% endif %} {% endfor %}
{% endif %}

Jobs

{{ job_table(jobs, "jobs", "jobsSearchBar") }} {% endblock %}