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

10 lines
234 B
HTML
Executable File

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