From 0dd2a214e16e8e440714c40a8fadffd07f0b5288 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 30 Nov 2022 15:04:11 +0100 Subject: 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. --- dashboard/app/admin.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'dashboard/app/admin.html') 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}} -- cgit mrf-deployment