blob: 64fd7cbe6e943c6b5a219a3d52bb8864fac316b0 (
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
27
28
29
30
31
32
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Deletion log</title>
<link href="{{.Prefix}}static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<h1>Deletion log</h1>
<table class="table table-hover">
<thead>
<tr>
{{ range $k, $v := (index .Deletions 0) }}
<th>{{$k}}</th>
{{ end }}
</tr>
</thead>
{{ range .Deletions }}
<tr>
{{ range $k, $v := . }}
<td>{{$v}}</td>
{{ end }}
</tr>
{{ end }}
</table>
<script src="{{.Prefix}}static/jquery.min.js"></script>
<script src="{{.Prefix}}static/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>
|