diff options
Diffstat (limited to 'template/summary_result_tpl.html')
-rw-r--r-- | template/summary_result_tpl.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/template/summary_result_tpl.html b/template/summary_result_tpl.html new file mode 100644 index 0000000..6b8f9fe --- /dev/null +++ b/template/summary_result_tpl.html @@ -0,0 +1,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> + |