github.com/google/syzkaller@v0.0.0-20240517125934-c0f1611a36d6/dashboard/app/subsystems.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: subsystems list</title>
    13  </head>
    14  <body>
    15  	{{template "header" .Header}}
    16  	<h2>The list of subsystems</h2><br>
    17  	<table class="list_table">
    18  		<thead>
    19  			<tr>
    20  				<th><a onclick="return sortTable(this, 'Name', textSort)" href="#">Name</a></th>
    21  				<th>List(s)</th>
    22  				<th><a onclick="return sortTable(this, 'Open', numSort)" href="#">Open</a></th>
    23  				<th><a onclick="return sortTable(this, 'Fixed', numSort)" href="#">Fixed</a></th>
    24  			</tr>
    25  		</thead>
    26  		<tbody>
    27  		{{range $item := .List}}
    28  		<tr>
    29  			<td>{{link $item.Open.Link $item.Name}}</td>
    30  			<td>{{$item.Lists}}</td>
    31  			<td>{{link $item.Open.Link (printf "%d" $item.Open.Count)}}</td>
    32  			<td>{{link $item.Fixed.Link (printf "%d" $item.Fixed.Count)}}</td>
    33  		</tr>
    34  		{{end}}
    35  		</tbody>
    36  		<tfoot>
    37  		<tr>
    38  			<td><b>{{link .Unclassified.Open.Link "unclassified"}}</b></td>
    39  			<td>-</td>
    40  			<td>{{link .Unclassified.Open.Link (printf "%d" .Unclassified.Open.Count)}}</td>
    41  			<td>{{link .Unclassified.Fixed.Link (printf "%d" .Unclassified.Fixed.Count)}}</td>
    42  		</tr>
    43  		</tfoot>
    44  	</table>
    45  	<i>(*) Note that the numbers below do not represent the latest data. They are updated once an hour.</i><br><br>
    46  	{{if .SomeHidden}}
    47  		Empty subsystems have been hidden from the list. {{link .ShowAllURL "Show all"}}. <br>
    48  	{{end}}
    49  </body>
    50  </html>