aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/templates/terminal.html
blob: 43d539f4cce92894d269761366750ba5dcbdc5e9 (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
{{/*
Copyright 2019 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.

Terminal bugs page (fixed, invalid).
*/}}

<!doctype html>
<html>
<head>
	{{template "head" .Header}}
	<title>syzbot</title>
</head>
<body>
	{{template "header" .Header}}


	{{if .Stats}}
		{{with .Stats}}
Out of <b>{{.Total}}</b> bugs, <b>{{.AutoObsoleted}}</b> were automatically obsoleted (<b>{{.ReproObsoleted}}</b> due to revoked reproducers), <b>{{.UserObsoleted}}</b> were invalidated by users.<br />
		{{end}}
	{{end}}

	{{template "bug_filter" $.BugFilter}}
	{{template "bug_list" .Bugs}}
</body>
</html>