blob: 80981120b75f347a83ccca21bfc8451d60a0d598 [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%; ">
gstepanovdff5ad92015-02-12 17:13:09 +020013 <th>Build type</th>
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>
gstepanova0cb9252015-02-12 17:53:31 +020019 {{ test.type }}
gstepanov9eb8bf32015-02-11 20:13:14 +020020 </td>
21 <td>
gstepanova0cb9252015-02-12 17:53:31 +020022 <a href="{{ test.url }} ">{{ test.name }}</a>
gstepanovdff5ad92015-02-12 17:13:09 +020023 </td>
24 <td>
gstepanov3ce37b82015-02-12 16:20:56 +020025 {{ test.date }}
gstepanov9eb8bf32015-02-11 20:13:14 +020026 </td>
27 </tr>
gstepanov2164d822015-02-04 19:49:40 +020028 {% endfor %}
gstepanov9eb8bf32015-02-11 20:13:14 +020029 </table>
gstepanov2164d822015-02-04 19:49:40 +020030 {% endblock %}
31</body>
32</html>