{% extends "base.html" %} {% from 'macros.html' import code_with_search_link, display_file_list_single_line %} {% block content %} {{ super() }}
Click file names or hash codes to search.
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:
Notes: {{ run.notes | highlight(query) | safe }} {% endif %} |