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

15 lines
295 B
HTML
Executable File

{% extends "base.html" %}
{% block content %}
<style type="text/css">
li {
padding-bottom: 10px; }
</style>
<h3>All known failing tests</h3>
<ul>
{% for t in tests %}
<li><a href="{% url viewer.views.test tree=tree %}?name={{ t }}">{{ t }}</a></li>
{% endfor %}
</ul>
{% endblock %}