/queue-summary: Show number of queued builds by system type

This commit is contained in:
Eelco Dolstra
2016-03-22 17:03:26 +01:00
parent aba2356932
commit 6fc4dc4e27
2 changed files with 21 additions and 0 deletions

View File

@ -28,6 +28,23 @@
</tdata>
</table>
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>System type</th>
<th># Queued</th>
</tr>
</thead>
<tdata>
[% FOREACH s IN systems %]
<tr>
<td><tt>[% HTML.escape(s.system) %]</tt></td>
<td>[% s.c %]</td>
</tr>
[% END %]
</tdata>
</table>
[% END %]
[% END %]