blob: d0729c2e3d7755d3470ecdd30bcadbf7b3d6fee0 [file] [log] [blame]
gstepanov2164d822015-02-04 19:49:40 +02001{% extends "base.html" %}
2<html>
3<head>
4 {% block head %}
5 {{ super() }}
6 <title>Test report</title>
7 {% endblock %}
8</head>
9<body>
gstepanov2164d822015-02-04 19:49:40 +020010 {% block body %}
gstepanova4b8eaa2015-02-12 16:45:47 +020011 <h2 align="center">Tests report : </h2>
gstepanov13eb68b2015-02-12 16:35:20 +020012 <table align="center" class="table table-striped" style="width: 70%; ">
gstepanov9eb8bf32015-02-11 20:13:14 +020013 <th>Build name</th>
14 <th> Date </th>
gstepanov2164d822015-02-04 19:49:40 +020015 {% for test in tests %}
gstepanov9eb8bf32015-02-11 20:13:14 +020016 <tr>
17 <td>
gstepanov3ce37b82015-02-12 16:20:56 +020018 <a href="{{ test.url }} ">{{ test.name }}</a>
gstepanov9eb8bf32015-02-11 20:13:14 +020019 </td>
20 <td>
gstepanov3ce37b82015-02-12 16:20:56 +020021 {{ test.date }}
gstepanov9eb8bf32015-02-11 20:13:14 +020022 </td>
23 </tr>
gstepanov2164d822015-02-04 19:49:40 +020024 {% endfor %}
gstepanov9eb8bf32015-02-11 20:13:14 +020025 </table>
gstepanov2164d822015-02-04 19:49:40 +020026 {% endblock %}
27</body>
28</html>