-
Notifications
You must be signed in to change notification settings - Fork 0
/
scoreReport.html
60 lines (60 loc) · 2.33 KB
/
scoreReport.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Score report | RallyTree</title>
<meta name="description" content="Automation of Rally tree management">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script>__script__</script>
</head>
<body class="ack">
<main>
<h1>RallyTree score report</h1>
<section class="flex">
<section class="even">
<h2>Results</h2>
<h3>Verdicts</h3>
<p>Test cases: <span id="total" role="status">0</span></p>
<p>Test cases with verdicts: <span id="verdicts" role="status">0</span></p>
<p>Test cases with pass/fail verdicts: <span id="scoreVerdicts" role="status">0</span></p>
<p class="more">Last verdict passing: <span id="passes" role="status">0</span></p>
<p class="more">Last verdict failing: <span id="fails" role="status">0</span></p>
<p class="more">Score:
<span id="score" role="status">0</span>%
(<span
id="numerator"
role="status"
>0</span>/<span
id="denominator"
role="status"
>0</span>)
</p>
<h3>Defects</h3>
<p class="more">Total: <span id="defects" role="status">0</span></p>
<p class="more">Major: <span id="major" role="status">0</span></p>
<p class="more">Minor: <span id="minor" role="status">0</span></p>
<div id="error" class="error" role="alert"></div>
</section>
<section class="odd">
<h2>Weights</h2>
<p>You weighed risks from __riskMin__ to __riskMax__.</p>
<p>You weighed priorities from __priorityMin__ to __priorityMax__.</p>
</section>
<section class="even">
<h2>Tree</h2>
<p>You asked RallyTree to report scores for the Rally tree rooted at</p>
<pre>__rootRef__</pre>
</section>
<section class="odd">
<h2>You</h2>
<p>Your Rally user name is</p>
<pre>__userName__</pre>
<p class="more">Your Rally user reference is</p>
<pre>__userRef__</pre>
</section>
</section>
<p><a href="http://localhost:3000/do.html">Use RallyTree again.</a></p>
</main>
</body>
</html>