aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/templates/main.html
blob: 5425a47a46bdb8e9de2d6090d327f22d5196ece3 (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
{{/*
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}}
	{{if or (not $.BugFilter.Filter.Any) ($.BugFilter.Filter.ManagerName)}}
		{{template "manager_list" $.Managers}}
	{{end}}
	{{template "bug_filter" $.BugFilter}}
	{{range $group := $.Groups}}
		<details open>
			<summary class="bug_list_caption">
				{{$group.Caption}} ({{len $group.Bugs}})
				<a id="{{$group.Fragment}}" href="#{{$group.Fragment}}">🔗</a>
			</summary>
			{{template "bug_list" $group}}
		</details>
	{{end}}
</body>
</html>