From 96ca35f4c7ac6fecc3f129eb340cfd29f18cfdf1 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 4 Dec 2017 09:00:28 +0100 Subject: dashboard/app: show info about duplicates and similar bugs Show info about duplicates and similar bugs in other kernels on the bug page. --- dashboard/app/main.html | 30 ++++++++---------------------- 1 file changed, 8 insertions(+), 22 deletions(-) (limited to 'dashboard/app/main.html') diff --git a/dashboard/app/main.html b/dashboard/app/main.html index 6a9c84f75..abdc632f5 100644 --- a/dashboard/app/main.html +++ b/dashboard/app/main.html @@ -1,3 +1,10 @@ +{{/* +Copyright 2017 syzkaller project authors. All rights reserved. +Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +Main page. +*/}} + @@ -101,28 +108,7 @@

{{range $group := $.BugGroups}} - - - - - - - - - - - {{range $b := $group.Bugs}} - - - - - - - - - {{end}} -
{{.Namespace}} ({{len $group.Bugs}}):
TitleCountReproLastStatusPatched
{{$b.Title}}{{$b.NumCrashes}}{{formatReproLevel $b.ReproLevel}}{{formatLateness $.Now $b.LastTime}}{{if $b.Link}}{{$b.Status}}{{else}}{{$b.Status}}{{end}}{{if $b.Commits}}{{len $b.PatchedOn}}/{{len $b.MissingOn}}{{end}}
-

+ {{template "bug_list" $group}} {{end}} -- cgit mrf-deployment