Variety of fixes all over the place

Makes buildbot more usable, but still tweaks are needed.
This commit is contained in:
2015-06-20 21:15:24 +02:00
parent 96b04687a2
commit c4b9358874
8 changed files with 314 additions and 58 deletions

View File

@@ -0,0 +1,30 @@
{% extends "layout.html" %}
{% import 'grid_macros.html' as grid with context %}
{% block content %}
<h1>Transposed Grid View</h1>
<table class="Grid table table-striped table-hover box" 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]) }}
{% for b in builder_builds %}
{{ grid.build_td(b[i]) }}
{% endfor %}
</tr>
{% endfor %}
</table>
{% endblock %}