aboutsummaryrefslogtreecommitdiffstats
path: root/template/summary_result_tpl.html
blob: 6b173cff3792f8d0b4179432dde065bdbe880c28 (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 }} Xpass : {{ data.xpassed }} Fail : {{ data.failed }} Xfail : {{ data.xfailed }} 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>