blob: ba324053db64cd8d001d86c15df0cc208a93c11c [file] [log] [blame]
{% extends "base.html" %}
<html>
<head>
{% block head %}
{{ super() }}
<title>Test report</title>
{% endblock %}
</head>
<body>
<h1>Tests</h1>
{% block body %}
<div>
<ol>
{% for test in tests %}
<li>
<h2>
<a href="{{ test.url }} ">{{ test.name }}</a>
</h2>
</li>
{% endfor %}
</ol>
</div>
{% endblock %}
</body>
</html>