diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2022-11-30 15:04:11 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2022-12-01 14:37:29 +0100 |
| commit | 0dd2a214e16e8e440714c40a8fadffd07f0b5288 (patch) | |
| tree | 17dad1792aa2c494d1ecfe50b435ee5528e7a9c1 /dashboard/app/admin.html | |
| parent | 3b580c21132d00956c79b09377ed6e63a6e030e0 (diff) | |
dashboard: display running and pending jobs on the admin page
This reflects the situation more adequately than just the recent jobs.
There are times when failed jobs are retried or manually restarted and
the current page just does not show such jobs.
Diffstat (limited to 'dashboard/app/admin.html')
| -rw-r--r-- | dashboard/app/admin.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dashboard/app/admin.html b/dashboard/app/admin.html index bce5d2cda..cc66f7d91 100644 --- a/dashboard/app/admin.html +++ b/dashboard/app/admin.html @@ -47,6 +47,8 @@ Main page. {{end}} {{template "manager_list" $.Managers}} - {{template "job_list" $.Jobs}} + {{template "job_list" $.RunningJobs}} + {{template "job_list" $.PendingJobs}} + {{template "job_list" $.RecentJobs}} </body> </html> |
