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/templates.html | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 dashboard/app/templates.html (limited to 'dashboard/app/templates.html') diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html new file mode 100644 index 000000000..6fe5e011a --- /dev/null +++ b/dashboard/app/templates.html @@ -0,0 +1,36 @@ +{{/* +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. +*/}} + +{{/* List of bugs, invoked with *uiBugGroup */}} +{{define "bug_list"}} +{{if .}} +{{if .Bugs}} + + + + {{if $.ShowNamespace}}{{end}} + + + + + + + + {{range $b := .Bugs}} + + {{if $.ShowNamespace}}{{end}} + + + + + + + + {{end}} +
{{$.Caption}}:
KernelTitleCountReproLastPatchedStatus
{{$b.Namespace}}{{$b.Title}}{{$b.NumCrashes}}{{formatReproLevel $b.ReproLevel}}{{formatLateness $.Now $b.LastTime}}{{if $b.Commits}}{{len $b.PatchedOn}}/{{len $b.MissingOn}}{{end}}{{if $b.Link}}{{$b.Status}}{{else}}{{$b.Status}}{{end}}
+
+{{end}} +{{end}} +{{end}} -- cgit mrf-deployment