11 lines
349 B
HTML
11 lines
349 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h3>Failed tests from last {{n}} {{d}} up to now</h3>
|
|
<table>
|
|
<tr><th>Count</th><th align="left">Test name</th></tr>
|
|
{% for f in failures %}
|
|
<tr><td>{{ f.count }}</td><td><a href="{% url viewer.views.test tree=tree %}?name={{ f.name }}">{{ f.name }}</a></td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|