blob: b401c0372e82365d5e6dedbff1a1bcca5b18be33 (
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
|
{{/*
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>{{.PageTitle}} ({{len .Jobs}}):</caption>
<thead>
<tr>
<th>Program</th>
<th>Calls</th>
<th>Execs</th>
</tr>
</thead>
<tbody>
{{range $job := $.Jobs}}
<tr>
<td class="job_description"><a href='/jobs?id={{$job.ID}}'>{{$job.Short}}</a></td>
<td class="job_description">{{$job.Calls}}</td>
<td class="job_description">{{$job.Execs}}</td>
</tr>
{{end}}
</tbody>
</table>
|