blob: 45bb6b5782ddafce515f7ef44373119689ab1bf0 (
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
|
{{/*
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>Raw cover</caption>
<thead>
<tr>
<th>Line</th>
<th>Links</th>
</tr>
</thead>
<tbody>
{{range $line := .Calls}}
<tr>
<td>{{$line.Call}}</td>
<td>
{{range $id := $line.UpdateIDs}}
<a href="/rawcover?input={{$line.Sig}}&update_id={{$id}}">[{{$id}}]</a>
{{end}}
</td>
</tr>
{{end}}
</tbody>
</table>
|