{% extends "base.html" %} {% block title %}ReciPy - Run Details {% if active_page == 'latest_run' %} - Latest Run{% endif %} {% endblock %} {% block content %} {{ super() }}

Run {{ run.unique_id | string | highlight(query) | safe }}

{% if run.command_args|length > 0 %} {% endif %} {% if run.exception %} {% endif %}
Date {{ run.date | datetimefilter }}
Author {{ run.author | highlight(query) | safe }}
Command {{ run.command | highlight(query) | safe }}
Script {{ run.script | highlight(query) | safe }}
Command line arguments {{ run.command_args | highlight(query) | safe }}
Inputs {% if run.inputs | length > 0 %} {{ run.inputs | join(', ') | highlight(query) | safe }} {% else %} none {% endif %}
Outputs {% if run.outputs | length > 0 %} {{ run.outputs | join(', ') | highlight(query) | safe }} {% else %} none {% endif %}
Exception {{ run.exception.type }} {{ run.exception.message }} {% if run.exception.traceback %}
Traceback:
{{ run.exception.traceback | highlight(query) | safe }}
{% endif %}
Environment {{ run.environment | join(' ') | highlight(query) | safe }}
Notes
{{ annotateRunForm.run_id(value=run.eid) }}
{% if run.gitcommit %}

Git

{% if run.diff and run.diff | length > 0 %} {% else %} {% endif %}
Git Repo {{ run.gitrepo | highlight(query) | safe }} {% if run.gitorigin and run.gitorigin | length > 0 %} (online: {{ run.gitorigin | gitorigin2url | safe }}) {% endif %}
Git Origin {{ run.gitorigin | highlight(query) | safe }}
Git Commit {% if run.gitorigin and run.gitorigin | length > 0 %} {{ run.gitcommit | highlight(query) | safe }} {% else %} {{ run.gitcommit | highlight(query) | safe }} {% endif %}
Git diff {{ run.diff | colordiff | highlight(query) | safe }} No changes
{% endif %} {% endblock %}