{% 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 }}
|
| 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 |
| 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 | {% if run.diff and run.diff | length > 0 %}{{ run.diff | colordiff | highlight(query) | safe }} | {% else %}No changes | {% endif %}