aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/templates/grid_transposed.html
blob: 9b6cadada9feeead6e964ace8d3c694456d637c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends "layout.html" %}
{% import 'grid_macros.html' as grid with context %}

{% block content %}

<h1>Transposed Grid View</h1>

<table class="Grid" border="0" cellspacing="0">

<tr>
 <td class="title"><a href="{{ title_url }}">{{ title }}</a>
  {{ grid.category_title() }}
 </td>
 {% for builder in builders %}
  {{ grid.builder_td(builder) }}
 {% endfor %}
</tr>

{% for i in range %}
 <tr>
 {{ grid.stamp_td(stamps[i], build_triggers[i]) }}
 {% for b in builder_builds %}
   {{ grid.build_td(b[i]) }}
 {% endfor %}
 </tr>
{% endfor %}

</table>

{% endblock %}