aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/admin.html
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-07-17 12:07:58 +0200
committerAleksandr Nogikh <nogikh@google.com>2023-07-17 11:17:04 +0000
commitc842da34cdd3b56628cb00b5f1f024dabc798716 (patch)
tree8ed37230fa4620f2d4e0f8d87d9e7c7caafda57c /dashboard/app/admin.html
parente5f1088910d12c083d40dd1d9e3f62d4713faa6b (diff)
dashboard: show per-bisect type job lists for admins
Currently we only show running/pending/recent jobs. Let admins also see the list of the latest cause/fix bisections.
Diffstat (limited to 'dashboard/app/admin.html')
-rw-r--r--dashboard/app/admin.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/dashboard/app/admin.html b/dashboard/app/admin.html
index cc66f7d91..8ada1c64b 100644
--- a/dashboard/app/admin.html
+++ b/dashboard/app/admin.html
@@ -47,8 +47,13 @@ Main page.
{{end}}
{{template "manager_list" $.Managers}}
+ &nbsp;&nbsp;
+ {{if $.FixBisectionsLink}}<a href="{{$.FixBisectionsLink}}">[Fix Bisections]</a>{{end}}
+ {{if $.CauseBisectionsLink}}<a href="{{$.CauseBisectionsLink}}">[Cause Bisections]</a>{{end}}
+ {{if $.JobOverviewLink}}<a href="{{$.JobOverviewLink}}">[Jobs Overview]</a>{{end}}
{{template "job_list" $.RunningJobs}}
{{template "job_list" $.PendingJobs}}
{{template "job_list" $.RecentJobs}}
+ {{template "job_list" $.TypeJobs}}
</body>
</html>