aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/main.html
blob: 4c1191a09cc611dc924f83b53ac77ea60038a141 (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
{{/*
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 $.FixedLink}}
		<a href="{{$.FixedLink}}">fixed bugs ({{$.FixedCount}})</a>
	{{end}}
	{{template "manager_list" $.Managers}}
	{{range $group := $.Groups}}
		{{template "bug_list" $group}}
	{{end}}
</body>
</html>