11 lines
305 B
HTML
Executable File
11 lines
305 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h3>Top 25 failing tests</h3>
|
|
<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>
|
|
{% endblock %}
|