aboutsummaryrefslogtreecommitdiffstats
path: root/template/summary_result_tpl.html
blob: 6b8f9fe2ee9c8fa5a4a549e87a636bc06235e96a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
	<head>
		<title>{{ data.test_name }} test report</title>
	</head>
	<body>
		<h1> {{ data.test_name }} test report </h1>
		<li> Status : {{ data.test_status }} </li>
        <li> Total : {{ data.collected }} Pass : {{ data.passed }} Fail : {{ data.failed }} Skip : {{ data.skipped }} </li>
        <li> Details : </li>
        <table border="1" cellspacing="2">
{{ data.case_status_html }}
        </table>
        <p></p>
        <li>Detail log : {{ data.test_name }}/log.zip</li>
	</body>
</html>