-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (87 loc) · 2.86 KB
/
Copy pathindex.html
File metadata and controls
99 lines (87 loc) · 2.86 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Dragonfly CI Test Dashboard</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="topbar">
<div>
<h1>Dragonfly CI Test Dashboard</h1>
<p id="subtitle">Loading test results...</p>
</div>
<div class="status-pill" id="dataStatus">Loading</div>
</header>
<main>
<section class="metrics" id="metrics"></section>
<section class="toolbar" aria-label="Filters">
<div class="search-box">
<label for="searchInput">Search</label>
<input id="searchInput" type="search" placeholder="test name, class, workflow" />
</div>
<div class="control-group">
<span>Suite</span>
<div class="segmented" id="suiteFilter"></div>
</div>
<div class="control-group">
<span>View</span>
<div class="segmented" id="viewFilter"></div>
</div>
</section>
<section class="toolbar filter-toolbar" aria-label="Run filters">
<div class="control-group">
<label for="rangeFilter">Range</label>
<select id="rangeFilter"></select>
</div>
<div class="control-group">
<label for="dateFilter">Date</label>
<select id="dateFilter"></select>
</div>
<div class="control-group">
<label for="workflowFilter">Workflow</label>
<select id="workflowFilter"></select>
</div>
<div class="control-group">
<label for="variantFilter">Variant</label>
<select id="variantFilter"></select>
</div>
<button class="secondary-button" id="resetFilters" type="button">Reset</button>
</section>
<section class="content-grid">
<section class="panel">
<div class="panel-header">
<h2 id="tableTitle">Tests</h2>
<span id="tableCount"></span>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Test</th>
<th>Status</th>
<th>Failures</th>
<th>Last Failed</th>
<th>Last Seen</th>
<th>Suite</th>
<th>Rate</th>
<th>Runs</th>
<th>Avg Time</th>
</tr>
</thead>
<tbody id="testRows"></tbody>
</table>
</div>
</section>
<aside class="panel details">
<div class="panel-header">
<h2>Selected</h2>
</div>
<div id="detailsPane" class="empty-state">Select a test row.</div>
</aside>
</section>
</main>
<script src="app.js"></script>
</body>
</html>