Variety of fixes all over the place
Makes buildbot more usable, but still tweaks are needed.
This commit is contained in:
30
templates/grid_transposed.html
Normal file
30
templates/grid_transposed.html
Normal 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 %}
|
Reference in New Issue
Block a user