blob: 45ada7b4512368035513b205d0729a9f9fd20e49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{{/*
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.
*/}}
<!doctype html>
<html>
<head>
{{template "head" .Header}}
<title>syzbot: {{.Info.Name}} subsystem</title>
</head>
<body>
{{template "header" .Header}}
<h2>{{.Info.Name}} subsystem</h2><br>
{{if .Info.Lists}}
<b>List(s):</b> {{.Info.Lists}}<br>
{{end}}
{{if .Info.Maintainers}}
<b>Maintainer(s):</b> {{.Info.Maintainers}}<br>
{{end}}
<b>Fixed bugs:</b> {{link .Info.Fixed.Link (printf "%d" .Info.Fixed.Count)}}<br>
{{if .Parents}}
<b>Parent subsystem(s):</b>
{{range .Parents}}
{{link .Open.Link .Name}} ({{.Open.Count}})
{{end}}
<br>
{{end}}
{{if .Children}}
<b>Child subsystems:</b>
{{range .Children}}
{{link .Open.Link .Name}} ({{.Open.Count}})
{{end}}
<br>
{{end}}
{{range $group := $.Groups}}
{{template "bug_list" $group}}
{{end}}
</body>
</html>
|