1 {% extends "base.html" %} 2 3 {% block content %} 4 <h1 class="title">Job {{ job_id }}</h1> 5 6 <h2 class="title">General information</h2> 7 {% include "snippet_attribute_table.html" %} 8 9 <h2 class="title">Timeline of status events</h2> 10 <table class="list"> 11 <tbody> 12 <tr> 13 <th>Started</th> 14 <th>From State</th> 15 <th>To State</th> 16 <th>Elapsed</th> 17 </tr> 18 {% for entry in timeline %} 19 <tr> 20 <td>{{ entry.started }}</td> 21 <td>{{ entry.state_from }}</td> 22 <td>{{ entry.state_to }}</td> 23 <td>{{ entry.elapsed }}</td> 24 </tr> 25 {% endfor %} 26 </tbody> 27 </table> 28 29 {% endblock %} 30