* Only include the system type in URLs if there are multiple jobs with

the same name.
This commit is contained in:
Eelco Dolstra
2010-03-07 11:38:39 +00:00
parent b8a78b2c3f
commit f816a5a28d
2 changed files with 7 additions and 1 deletions

View File

@ -27,7 +27,9 @@
[% IF j.build.resultInfo.buildstatus == 0 %]
[% IF j.build.buildproducts %]
[% INCLUDE renderProductList build=j.build latestRoot=['/view' project.name view.name 'latest' "${j.job.job}-${j.build.system}"] %]
[% p = jobNames.${j.job.job} > 1 ? "-${j.build.system}" : "";
INCLUDE renderProductList build=j.build latestRoot=['/view' project.name view.name 'latest' "${j.job.job}${p}"]
%]
[% ELSE %]
<p><em>Succeeded.</em></p>
[% END %]