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,4 +1,10 @@
<h1>Most recent test failures</h1>
{% extends "base.html" %}
{% block content %}
<style type="text/css">
li {
padding-bottom: 10px; }
</style>
<h3>Most recent test failures</h3>
<ul>
{% for f in failures %}
<li>{{ f.build.startdate|date:"Y-m-d H:i" }} {{ f.build.tree.name }} {{ f.build.get_os_display }}: <a href="{% url viewer.views.test %}?name={{ f.name }}">{{ f.name }}</a>,
@@ -6,3 +12,4 @@
- {{ f.description }}</li>
{% endfor %}
</ul>
{% endblock %}