github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/manager/html/crash.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  <b>{{.Title}}</b>
     7  
     8  {{if .Triaged}}
     9  Report: <a href="/report?id={{.ID}}">{{.Triaged}}</a>
    10  {{end}}
    11  
    12  <table class="list_table">
    13  	<thead>
    14  	<tr>
    15  		<th>#</th>
    16  		<th>Log</th>
    17  		<th>Report</th>
    18  		<th>Time</th>
    19  		<th>Tag</th>
    20  	</tr>
    21  	</thead>
    22  	<tbody>
    23  	{{range $c := $.Crashes}}
    24  	<tr>
    25  		<td>{{$c.Index}}</td>
    26  		<td><a href="/file?name={{$c.Log}}">log</a></td>
    27  		<td>
    28  			{{if $c.Report}}
    29  				<a href="/file?name={{$c.Report}}">report</a>
    30  			{{end}}
    31  		</td>
    32  		<td class="time {{if not $c.Active}}inactive{{end}}">{{formatTime $c.Time}}</td>
    33  		<td class="tag {{if not $c.Active}}inactive{{end}}" title="{{$c.Tag}}">{{formatTagHash $c.Tag}}</td>
    34  	</tr>
    35  	{{end}}
    36  	</tbody>
    37  </table>