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