{% extends "base.html" %} {% load djangocd_extras %} {% block content %}

#{{ jobrun.id }}: {{ jobrun.name }}

{{ jobrun.state|state_adjective|title }} since {{ jobrun.started_on|timesince }}

{% for actionrun in jobrun.actionruns.all %}

{{ actionrun.duration|duration }}

{% if actionrun.testresults.count > 0 %}

{{ actionrun|testresult_summary }}

{% endif %}
{{ actionrun.output|linebreaks }}
{% endfor %}
{% endblock %}