From bc63aac79a4640f951b050c537ba040bb231449b Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 16 Feb 2023 18:37:12 +0100 Subject: dashboard: display the subsystem list Take the counts from the cache, include links to the filtered bug views. --- dashboard/app/subsystems.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 dashboard/app/subsystems.html (limited to 'dashboard/app/subsystems.html') diff --git a/dashboard/app/subsystems.html b/dashboard/app/subsystems.html new file mode 100644 index 000000000..254a113fe --- /dev/null +++ b/dashboard/app/subsystems.html @@ -0,0 +1,41 @@ +{{/* +Copyright 2023 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. + +The list of polled trees. +*/}} + + + + + {{template "head" .Header}} + syzbot + + + {{template "header" .Header}} +

The list of subsystems


+ (*) Note that the numbers below do not represent the latest data. They are updated once an hour.
+ (**) If you have any ideas/suggestions on how to improve this list, feel free to contact us at syzkaller@googlegroups.com. + + + + + + + + + + + {{range $item := .List}} + + + + + + + + + {{end}} +
Subsystems list
NameListsMaintainersOpen bugsFixedInvalid
{{$item.Name}}{{$item.Lists}}{{$item.Maintainers}}{{link $item.Open.Link (printf "%d" $item.Open.Count)}}{{link $item.Fixed.Link (printf "%d" $item.Fixed.Count)}}{{link $item.Invalid.Link (printf "%d" $item.Invalid.Count)}}
+ + -- cgit mrf-deployment