aboutsummaryrefslogtreecommitdiff
path: root/automation/server/monitor/templates/job.html
blob: 90acd96997df2550201632921ba0cb26a11c7bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% 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 %}