This repository has been archived on 2023-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-buildbot/templates/grid_transposed.html

31 lines
581 B
HTML
Raw Normal View History

{% 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 %}