aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/manager/html/fallback_cover.html
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-11-08 12:22:28 +0100
committerDmitry Vyukov <dvyukov@google.com>2024-11-08 14:15:20 +0000
commit0571368b3bc37f92b06873e02342317006b0da60 (patch)
tree35637840d7e9098ee8ea54784d6c03b58e1be8cc /pkg/manager/html/fallback_cover.html
parent44b1e39faee03d3a5f496f66157a41f939e74286 (diff)
pkg/manager: move HTML code to separate files
Diffstat (limited to 'pkg/manager/html/fallback_cover.html')
-rw-r--r--pkg/manager/html/fallback_cover.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkg/manager/html/fallback_cover.html b/pkg/manager/html/fallback_cover.html
new file mode 100644
index 000000000..007278224
--- /dev/null
+++ b/pkg/manager/html/fallback_cover.html
@@ -0,0 +1,19 @@
+{{/*
+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">
+ <tr>
+ <th>Call</th>
+ <th>Successful</th>
+ <th>Errnos</th>
+ </tr>
+ {{range $c := $.Calls}}
+ <tr>
+ <td>{{$c.Name}}</td>
+ <td>{{if $c.Successful}}{{$c.Successful}}{{end}}</td>
+ <td>{{range $e := $c.Errnos}}{{$e}}&nbsp;{{end}}</td>
+ </tr>
+ {{end}}
+</table>