blob: 1ac9b269294a9bd5fdaa33bdb71ef7dc6f8c465b [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 %}
11 <div>
gstepanov3ce37b82015-02-12 16:20:56 +020012 <h1 align="center">Tests report : </h1>
13 <table align="center" class="table table-striped">
gstepanov9eb8bf32015-02-11 20:13:14 +020014 <th>Build name</th>
15 <th> Date </th>
gstepanov2164d822015-02-04 19:49:40 +020016 {% for test in tests %}
gstepanov9eb8bf32015-02-11 20:13:14 +020017 <tr>
18 <td>
gstepanov3ce37b82015-02-12 16:20:56 +020019 <a href="{{ test.url }} ">{{ test.name }}</a>
gstepanov9eb8bf32015-02-11 20:13:14 +020020 </td>
21 <td>
gstepanov3ce37b82015-02-12 16:20:56 +020022 {{ test.date }}
gstepanov9eb8bf32015-02-11 20:13:14 +020023 </td>
24 </tr>
gstepanov2164d822015-02-04 19:49:40 +020025 {% endfor %}
gstepanov9eb8bf32015-02-11 20:13:14 +020026 </table>
gstepanov2164d822015-02-04 19:49:40 +020027 </div>
28 {% endblock %}
29</body>
30</html>