Omit the small build status icon on the build page

It's kinda pointless next to the big-ass icon.
This commit is contained in:
Eelco Dolstra 2013-01-22 23:05:02 +01:00
parent ecdbce1a61
commit f3d6643724
2 changed files with 7 additions and 7 deletions

View file

@ -89,6 +89,12 @@
<th>Build ID:</th>
<td>[% build.id %]</td>
</tr>
<tr>
<th>Status:</th>
<td>
[% INCLUDE renderStatus build=build icon=0 %]
</td>
</tr>
[% IF build.releasename %]
<tr>
<th>Release name:</th>
@ -100,12 +106,6 @@
<td><tt>[% build.nixname %]</tt></td>
</tr>
[% END %]
<tr>
<th>Status:</th>
<td>
[% INCLUDE renderStatus build=build %]
</td>
</tr>
<tr>
<th>System:</th>
<td><tt>[% build.system %]</tt></td>

View file

@ -263,7 +263,7 @@
[% BLOCK renderStatus %]
[% IF build.finished %]
[% buildstatus = build.buildstatus %]
[% INCLUDE renderBuildStatusIcon size=16 %]
[% IF icon; INCLUDE renderBuildStatusIcon size=16; END %]
[% IF buildstatus == 0 %]
<strong>Success</strong>
[% ELSIF buildstatus == 1 %]