aboutsummaryrefslogtreecommitdiff
path: root/templates/result.html
blob: f90ff3d7a89f91bb7bfd8f1eaa0c4bbaf9eff47e (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
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>%(path)s - Details</title>
		<link rel="stylesheet" href="../result.css"/>
	</head>
	<body>
		<h1>Results for %(path)s</h1>
		<h2>Overview</h2>
		<p>
			<b>Status:</b> %(status)s<br/>
			<b>Result:</b> %(result)s<br/>
		</p>
		<p>
			<a href="../index.html">Back to summary</a>
		</p>
		<h2>Details</h2>
		<table>
			<tr class="head">
				<th>Detail</th>
				<th>Value</th>
			</tr>
			%(details)s
		</table>
		<p>
			<a href="../index.html">Back to summary</a>
		</p>
	</body>
</html>