Added running icon in queue in stead of background color.

This commit is contained in:
Rob Vermaas 2012-04-12 22:10:16 +02:00
parent 8aaa0a1a8a
commit 4f5327d7ed
2 changed files with 6 additions and 1 deletions

View file

@ -67,6 +67,9 @@
[%- IF !hideResultInfo -%]
<th></th>
[% END %]
[%- IF showSchedulingInfo -%]
<th></th>
[%- END -%]
<th>#</th>
[%- IF showSchedulingInfo -%]
<th>P</th>
@ -103,6 +106,9 @@
[%- INCLUDE renderBuildStatusIcon size=16 busy=(showSchedulingInfo ? 1 : 0) buildstatus=build.buildstatus -%]
</td>
[%- END -%]
[% IF showSchedulingInfo %]
<td>[%- IF build.busy %]<span class="label label-success">Running</span>[% ELSE %]<span class="label">Queued</span>[% END %]</td>
[% END %]
<td><a href="[% c.uri_for('/build' build.id) %]">[% build.id %]</a></td>
[%- IF showSchedulingInfo -%]
<td>[% build.priority %]</td>

View file

@ -8,4 +8,3 @@ th {
text-align: left;
vertical-align: top;
}