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

10 lines
207 B
HTML
Executable File

{% extends "base.html" %}
{% block content %}
<h3>{{ tree }}</h3>
<ul>
{% for build in newestbuilds %}
<li>{{ build.get_os_display }}: {{ build.get_status_display }}</li>
{% endfor %}
</ul>
{% endblock %}