{% extends "base.html" %} {% block content %} {{ super() }} {% if query %}

Search results

{% else %}

Runs

{% endif %} {% if runs | length > 0 %} {% for run in runs %} {% endfor %}
Run ID: {{ run.unique_id }}
Created by {{ run.author }} on {{ run.date | datetimefilter }}
Ran {{ run.script }} using {{ run.command }}
Environment: {{ run.environment|join(", ") }}
{% if run.inputs | length == 0 %} Inputs: none {% else %} Input: {{ run.inputs | join(', ') | safe }} {% endif %}
Outputs: {{ run.outputs | join(', ') | highlight(query) | safe }}
{% else %} No runs found. {% endif %} {% endblock %}