hydra/src/root/queue-summary.tt

34 lines
825 B
Plaintext
Raw Normal View History

[% WRAPPER layout.tt title="Queue summary" %]
[% PROCESS common.tt %]
[% IF queued.size == 0 %]
<div class="alert alert-info">There are no pending builds.</div>
[% ELSE %]
<table class="table table-striped table-condensed clickable-rows">
<thead>
<tr>
<th>Jobset</th>
<th># Queued</th>
<th>Oldest queued</th>
<th>Newest queued</th>
</tr>
</thead>
<tdata>
[% FOREACH j IN queued %]
<tr>
2016-03-10 15:48:06 +00:00
<td>[% INCLUDE renderFullJobsetName project=j.project jobset=j.jobset inRow=1 %]</td>
<td>[% HTML.escape(j.queued) %]</td>
<td>[% INCLUDE renderRelativeDate timestamp=j.oldest %]</td>
<td>[% INCLUDE renderRelativeDate timestamp=j.newest %]</td>
</tr>
[% END %]
</tdata>
</table>
[% END %]
[% END %]