{% extends "base.html" %} {% from 'macros.html' import code_with_search_link, display_file_list_single_line %} {% block content %} {{ super() }}
{% if query %}

Search results ({{ runs | length }} runs)

{% else %}

Runs ({{ runs | length }})

{% endif %}

Click file names or hash codes to search.

{% if runs | length > 0 %} {% for run in runs %} {% endfor %}
Run ID: {{ run.unique_id | highlight(query) | safe }}
Created by {{ run.author }} on {{ run.date }}
Ran {{ code_with_search_link(run.script, query) }} using {{ run.command }}
{% if run.command_args|length > 0 %} Command-line arguments: {{ run.command_args | safe }}
{% endif %} Environment: {{ run.environment|join(", ") }}
Inputs: {{ display_file_list_single_line(run.inputs, query) }}
Outputs: {{ display_file_list_single_line(run.outputs, query) }} {% if run.exception %}
Exception: {{ run.exception.type }} {{ run.exception.message }} {% endif %} {% if run.warnings %}
Warnings:
    {% for w in run.warnings %}
  • {{ w.message }} ({{ w.script }}, line {{ w.lineno }})
  • {% endfor %}
{% endif %} {% if run.notes %}
Notes: {{ run.notes | highlight(query) | safe }} {% endif %}
{% else %} No runs found. {% endif %}
{% endblock %}