{% extends "script/script_base.html" %} {% load staticfiles %} {% load i18n %} {% load utility_tags %} {% block head %} {{block.super}} {% endblock %} {% block title %}{% blocktrans with name=script.name|unquote_plus run=run.name|unquote_plus %}Edit run {{run}} of script {{name}}{% endblocktrans %}{% endblock %} {% block content %}
{% if run.scheduled %} {% blocktrans with time=run.scheduled %}Scheduled at {{time}}{% endblocktrans %} {% elif run.hosts %}
{% endif %} {% if run.scheduled %} {% if run.completed %} {% blocktrans with time=run.completed %}Completed at {{time}}{% endblocktrans %} {% else %} {% trans "Not completed yet" %} {% endif %} {% endif %}| {{host.name}} | |
| {% trans "There are no hosts in this run yet." %} | |
| Name | Started | Ended | Result | Output |
|---|---|---|---|---|
| {{host.name}} | {{host.started|default:"--"}} | {{host.ended|default:"--"}} | {% if host.result == 0 %} {% trans "Ok" %} {% else %} {{host.result|default:"--"}} {% endif %} | {{host.output}} |