From e97b06d3cef9296e9d0e827c42bccdd36b555986 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 8 May 2020 15:40:27 +0200 Subject: dashboard/app: show patch testing requests on bug page Fixes #1547 --- dashboard/app/admin.html | 58 +----------------------------------------------- 1 file changed, 1 insertion(+), 57 deletions(-) (limited to 'dashboard/app/admin.html') diff --git a/dashboard/app/admin.html b/dashboard/app/admin.html index edbdc9f7e..172070821 100644 --- a/dashboard/app/admin.html +++ b/dashboard/app/admin.html @@ -23,62 +23,6 @@ Main page.

{{template "manager_list" $.Managers}} - - - - - - - - - - - - - - - - - {{range $job := $.Jobs}} - - - - - - - - - - - {{end}} - -
Recent jobs:
BugCreatedDurationUserPatchRepoManagerResult
{{$job.BugTitle}}{{link $job.ExternalLink (formatTime $job.Created)}} - {{formatDuration $job.Duration}}{{if gt $job.Attempts 1}} ({{$job.Attempts}}){{end}} - - {{if eq $job.Type 0}} - {{$job.User}} - {{else if eq $job.Type 1}} - bisect - {{else if eq $job.Type 2}} - bisect fix - {{end}} - {{optlink $job.PatchLink "patch"}}{{$job.KernelAlias}}{{$job.Manager}} - {{if $job.ErrorLink}} - {{link $job.ErrorLink "error"}} - {{else if $job.LogLink}} - {{link $job.LogLink "log"}} - ({{if $job.Commit}}1{{else}}{{len $job.Commits}}{{end}}) - {{else if $job.CrashTitle}} - {{optlink $job.CrashReportLink "report"}} - {{optlink $job.CrashLogLink "log"}} - {{else if formatTime $job.Finished}} - OK - {{else if formatTime $job.Started}} - running - {{else}} - pending - {{end}} -
-

+ {{template "job_list" $.Jobs}} -- cgit mrf-deployment