aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/onelineperbuildonebuilder.html
blob: 051501f20102a200ac227a40b9e1a79d5c68ecb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "layout.html" %}
{% from 'build_line.html' import build_line %}

{% block content %}

<h1>Last {{ num_builds }} builds of builder {{ builder_name|e }}: 
    {{ branches|join(', ')|e }}
</h1>

<ul>
{% for b in builds %}
  <li>{{ build_line(b) }}</li>
{% else %}
  <li>No matching builds found</li>
{% endfor %}
</ul>

{% endblock %}