github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/dashboard/app/subsystem_page.html (about) 1 {{/* 2 Copyright 2023 syzkaller project authors. All rights reserved. 3 Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. 4 5 The list of polled trees. 6 */}} 7 8 <!doctype html> 9 <html> 10 <head> 11 {{template "head" .Header}} 12 <title>syzbot: {{.Info.Name}} subsystem</title> 13 </head> 14 <body> 15 {{template "header" .Header}} 16 <h2>{{.Info.Name}} subsystem</h2><br> 17 {{if .Info.Lists}} 18 <b>List(s):</b> {{.Info.Lists}}<br> 19 {{end}} 20 {{if .Info.Maintainers}} 21 <b>Maintainer(s):</b> {{.Info.Maintainers}}<br> 22 {{end}} 23 <b>Fixed bugs:</b> {{link .Info.Fixed.Link (printf "%d" .Info.Fixed.Count)}}<br> 24 {{if .Parents}} 25 <b>Parent subsystem(s):</b> 26 {{range .Parents}} 27 {{link .Open.Link .Name}} ({{.Open.Count}}) 28 {{end}} 29 <br> 30 {{end}} 31 {{if .Children}} 32 <b>Child subsystems:</b> 33 {{range .Children}} 34 {{link .Open.Link .Name}} ({{.Open.Count}}) 35 {{end}} 36 <br> 37 {{end}} 38 {{range $group := $.Groups}} 39 {{template "bug_list" $group}} 40 {{end}} 41 </body> 42 </html>