{% extends "base.html" %}
{% block title %}ReciPy - Run Details
{% if active_page == 'latest_run' %} - Latest Run{% endif %}
{% endblock %}
{% block content %}
{{ super() }}
| Date |
{{ run.date | datetimefilter }} |
| Author |
{{ run.author | highlight(query) | safe }} |
| Command |
{{ run.command | highlight(query) | safe }}
|
| Script |
{{ run.script | 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 %}
|
| Environment |
{{ run.environment | join(' ') | highlight(query) | safe }} |
{% if run.gitcommit %}