github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/manager/html/prio.html (about)

     1  {{/*
     2  Copyright 2024 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  
     6  <table class="list_table">
     7  	<caption>Priorities for {{$.Call}}:</caption>
     8  	<thead>
     9  	<tr>
    10  		<th><a onclick="return sortTable(this, 'Prio', floatSort)" href="#">Prio</a></th>
    11  		<th><a onclick="return sortTable(this, 'Call', textSort)" href="#">Call</a></th>
    12  	</tr>
    13  	</thead>
    14  	<tbody>
    15  	{{range $p := $.Prios}}
    16  	<tr>
    17  		<td>{{printf "%5v" $p.Prio}}</td>
    18  		<td><a href='/prio?call={{$p.Call}}'>{{$p.Call}}</a></td>
    19  	</tr>
    20  	{{end}}
    21  	</tbody>
    22  </table>