forked from lix-project/hydra
build.tt: Fix reference to build.ischannel.
It's actually lower-case _despite_ the spelling in the SQL file(s), because the schema auto-generator from DBIx::Class doesn't take it into account because it's working on SQLite and the latter seems to ignore case. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
d1de12cac1
commit
f1dd08afc8
|
@ -188,7 +188,7 @@
|
|||
<td>[% IF cachedBuild; INCLUDE renderFullBuildLink build=cachedBuild; ELSE %]<em>unknown</em>[% END %]</td>
|
||||
</tr>
|
||||
[% END %]
|
||||
[% IF (!isAggregate || !build.isChannel) && build.finished; actualBuild = build.iscachedbuild ? cachedBuild : build %]
|
||||
[% IF (!isAggregate || !build.ischannel) && build.finished; actualBuild = build.iscachedbuild ? cachedBuild : build %]
|
||||
[% IF actualBuild %]
|
||||
<tr>
|
||||
<th>Duration:</th>
|
||||
|
@ -200,7 +200,7 @@
|
|||
<td>[% INCLUDE renderDateTime timestamp = build.stoptime; %]</td>
|
||||
</tr>
|
||||
[% END %]
|
||||
[% IF (!isAggregate || !build.isChannel) && buildLogExists(build) %]
|
||||
[% IF (!isAggregate || !build.ischannel) && buildLogExists(build) %]
|
||||
<tr>
|
||||
<th>Logfile:</th>
|
||||
<td>
|
||||
|
@ -215,7 +215,7 @@
|
|||
</tr>
|
||||
</table>
|
||||
|
||||
[% IF build.isChannel || (build.buildproducts && !isAggregate) %]
|
||||
[% IF build.ischannel || (build.buildproducts && !isAggregate) %]
|
||||
|
||||
<h3>Build products</h3>
|
||||
|
||||
|
|
Loading…
Reference in a new issue