You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
620 B
29 lines
620 B
{% extends "base.html" %} |
|
|
|
{% block content %} |
|
<h1 class="title">Job {{ job_id }}</h1> |
|
|
|
<h2 class="title">General information</h2> |
|
{% include "snippet_attribute_table.html" %} |
|
|
|
<h2 class="title">Timeline of status events</h2> |
|
<table class="list"> |
|
<tbody> |
|
<tr> |
|
<th>Started</th> |
|
<th>From State</th> |
|
<th>To State</th> |
|
<th>Elapsed</th> |
|
</tr> |
|
{% for entry in timeline %} |
|
<tr> |
|
<td>{{ entry.started }}</td> |
|
<td>{{ entry.state_from }}</td> |
|
<td>{{ entry.state_to }}</td> |
|
<td>{{ entry.elapsed }}</td> |
|
</tr> |
|
{% endfor %} |
|
</tbody> |
|
</table> |
|
|
|
{% endblock %}
|
|
|