8 lines
244 B
HTML
Executable File
8 lines
244 B
HTML
Executable File
<h1>Top 25 failing tests</h1>
|
|
<table>
|
|
<tr><th>Count</th><th align="left">Test name</th></tr>
|
|
{% for f in failures %}
|
|
<tr><td>{{ f.0 }}</td><td><a href="{% url viewer.views.test %}?name={{ f.1 }}">{{ f.1 }}</a></td></tr>
|
|
{% endfor %}
|
|
</table>
|