blob: ba324053db64cd8d001d86c15df0cc208a93c11c [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>
10 <h1>Tests</h1>
11 {% block body %}
12 <div>
13 <ol>
14 {% for test in tests %}
15 <li>
16 <h2>
17 <a href="{{ test.url }} ">{{ test.name }}</a>
18 </h2>
19 </li>
20 {% endfor %}
21 </ol>
22 </div>
23 {% endblock %}
24</body>
25</html>