15 lines
295 B
HTML
Executable File
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 %}
|