blob: 80981120b75f347a83ccca21bfc8451d60a0d598 [file] [log] [blame]
{% extends "base.html" %}
<html>
<head>
{% block head %}
{{ super() }}
<title>Test report</title>
{% endblock %}
</head>
<body>
{% block body %}
<h2 align="center">Tests report : </h2>
<table align="center" class="table table-striped" style="width: 70%; ">
<th>Build type</th>
<th>Build name</th>
<th> Date </th>
{% for test in tests %}
<tr>
<td>
{{ test.type }}
</td>
<td>
<a href="{{ test.url }} ">{{ test.name }}</a>
</td>
<td>
{{ test.date }}
</td>
</tr>
{% endfor %}
</table>
{% endblock %}
</body>
</html>