aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/main.html
blob: 89f273fae5e575bb4b5bf04366ddc83549c169b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{/*
Copyright 2017 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.

Main page.
*/}}

<!doctype html>
<html>
<head>
	{{template "head" .Header}}
	<title>syzbot</title>
</head>
<body>
	{{template "header" .Header}}
	{{if $.Decommissioned}}<h1>This kernel is DECOMMISSIONED</h1>{{end}}
	{{template "manager_list" $.Managers}}
	{{range $group := $.Groups}}
		{{template "bug_list" $group}}
	{{end}}
</body>
</html>