removed iframes and templatized

This commit is contained in:
2010-04-13 14:48:16 -07:00
parent 9e8961abf1
commit 74be39a565
15 changed files with 185 additions and 151 deletions

View File

@@ -1,6 +1,14 @@
<h1>All known failing tests</h1>
{% 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 %}