31 lines
581 B
HTML
31 lines
581 B
HTML
{% 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.tag_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 %}
|