aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/change_sources.html
blob: 24674dd5ea8dd8cd49549e1051930f9ddcc26bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "layout.html" %}

{% block content %}

<h1>Changesources</h1>

<div class="column">

{% if sources %}
  <ol>
  {% for s in sources -%}
     <li class="{{ loop.cycle('alt', '') }}">{{ s.describe() }}</li>
  {% endfor -%}
  </ol>
{% else %}
  none (push only)
{% endif %}

</div>

{% endblock %}