SEGZ2M2SIY3RN6SU27HC22T7MOZEJSZZPLPLRDNUAU6LE4AA56AQC
QAUDQPWGE3S3WOG6GEIT5MFZKLUZDGR4V4DO4F7QHFYRPH6XDGTAC
J5UVLXOK6EDIL5I7VKWH4V2QDS4DPD7FHRK6XBWSXFRQS4JKXFZQC
{ Slice => {} }); $c->stash->{systems} = dbh($c)->selectall_arrayref( "select system, count(*) as c from Builds where finished = 0 group by system order by c desc",
{ Slice => {} });
$c->stash->{systems} = dbh($c)->selectall_arrayref(
"select system, count(*) as c from Builds where finished = 0 group by system order by c desc",
<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>
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>System type</th>
<th># Queued</th>
</tr>
</thead>
<tdata>
[% FOREACH s IN systems %]
<td><tt>[% HTML.escape(s.system) %]</tt></td>
<td>[% s.c %]</td>
[% END %]
</tdata>
</table>