Files
topfails-from-tinderbox/topfails/templates/viewer/failswindow.html
2010-05-13 14:33:35 -07:00

11 lines
361 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.test__name }}">{{ f.test__name }}</a></td></tr>
{% endfor %}
</table>
{% endblock %}