Files
topfails-from-tinderbox/unittest-logs/unittestweb/templates/viewer/tests.html

15 lines
285 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 %}?name={{ t }}">{{ t }}</a></li>
{% endfor %}
</ul>
{% endblock %}