{% extends "layout.html" %} {% block title %} Run {{ run.run_id }} {% endblock %} {% block contents %}

Run {{ run.run_id }}

Source: {{ run.source|default("", true) }} Revision: {{ run.git_commit|format_git_commit }}
Start Time: {{ run.start_date|format_date }} End Time: {{ run.end_date|format_date }}
Status: {{ run.status }}

Parameters

{% if run.parameters %} {% for key, value in run.parameters|dictsort %} {% endfor %}
NameValue
{{ key }} {{ value }}
{% else %}

No parameters recorded.

{% endif %}

Metrics

{% if run.metrics %} {% for key, values in run.metrics|dictsort %} {% endfor %}
NameValue
{{ key }} {{ values|sparkline|safe }} {{ values[-1]|round(2) }}
{% else %}

No metrics recorded.

{% endif %}

Output Files

{% if run.output_files %}

{% for key in run.output_files|sort %} {{ key }}
{% endfor %}

Download All

{% else %}

No output files recorded.

{% endif %} {% endblock %}