aboutsummaryrefslogtreecommitdiff
path: root/automation/server/monitor/templates/job.html
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2017-02-08 10:42:04 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-02-08 10:42:04 +0000
commitc5804ce784c39d6cf4f69139ab3197d989181cf9 (patch)
tree87b3a32b13c392939d66fa93105896f5df0736a6 /automation/server/monitor/templates/job.html
parentbaba90fd78c18585d22430dc95c748f96ad0c772 (diff)
parent9c6fa5f9e514c743e62be0ee401c12e10c94d7f1 (diff)
downloadtoolchain-utils-c5804ce784c39d6cf4f69139ab3197d989181cf9.tar.gz
Merge remote-tracking branch 'aosp/mirror-chromium-master' into initial_import am: 870a8df6fc
am: 9c6fa5f9e5 Change-Id: Ie306363c46445f59e341b69121c4b0e113ad79b2
Diffstat (limited to 'automation/server/monitor/templates/job.html')
-rw-r--r--automation/server/monitor/templates/job.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/automation/server/monitor/templates/job.html b/automation/server/monitor/templates/job.html
new file mode 100644
index 00000000..90acd969
--- /dev/null
+++ b/automation/server/monitor/templates/job.html
@@ -0,0 +1,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 %}