github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/manager/html/job_list.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>{{.PageTitle}} ({{len .Jobs}}):</caption>
     8  	<thead>
     9  	<tr>
    10  		<th>Program</th>
    11  		<th>Calls</th>
    12  		<th>Execs</th>
    13  	</tr>
    14  	</thead>
    15  	<tbody>
    16  	{{range $job := $.Jobs}}
    17  	<tr>
    18  		<td class="job_description"><a href='/jobs?id={{$job.ID}}'>{{$job.Short}}</a></td>
    19  		<td class="job_description">{{$job.Calls}}</td>
    20  		<td class="job_description">{{$job.Execs}}</td>
    21  	</tr>
    22  	{{end}}
    23  	</tbody>
    24  </table>