diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-07-17 12:07:58 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2023-07-17 11:17:04 +0000 |
| commit | c842da34cdd3b56628cb00b5f1f024dabc798716 (patch) | |
| tree | 8ed37230fa4620f2d4e0f8d87d9e7c7caafda57c /dashboard/app/admin.html | |
| parent | e5f1088910d12c083d40dd1d9e3f62d4713faa6b (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.html | 5 |
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}} + + {{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> |
