forked from lix-project/hydra
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
[% WRAPPER layout.tt title="Job ‘$project.name:$jobset.name:$job.name’" %]
|
||
[% PROCESS common.tt %]
|
||
|
||
|
||
<h1>Job <tt>[% INCLUDE renderLink
|
||
uri = c.uri_for(c.controller('Project').action_for('view'), [project.name])
|
||
title = project.name %]:[% INCLUDE renderLink
|
||
uri = c.uri_for(c.controller('Jobset').action_for('index'), [project.name, jobset.name])
|
||
title = jobset.name %]:[% job.name %]</tt></h1>
|
||
|
||
|
||
<h2>Channels</h2>
|
||
|
||
<p>This job provides the following Nix channels:</p>
|
||
|
||
<ul>
|
||
<li>
|
||
<a href="[% c.uri_for('/job' project.name jobset.name job.name
|
||
'channel' 'latest') %]"><tt>latest</tt></a> — contains the latest
|
||
successful build for each platform.
|
||
</li>
|
||
<li>
|
||
<a href="[% c.uri_for('/job' project.name jobset.name job.name
|
||
'channel' 'all') %]"><tt>all</tt></a> — contains every successful
|
||
build of this job.
|
||
</li>
|
||
</ul>
|
||
|
||
|
||
<h2>Latest builds</h2>
|
||
|
||
<ul>
|
||
<li><a href="[% c.uri_for('/job' project.name jobset.name job.name
|
||
'latest') %]">Latest successful build.</a></li>
|
||
[% FOREACH system IN systems %]
|
||
<li><a href="[% c.uri_for('/job' project.name jobset.name job.name
|
||
'latest-for' system.system) %]">Latest successful build for <tt>[%
|
||
system.system %]</tt>.</a></li>
|
||
[% END %]
|
||
</ul>
|
||
|
||
|
||
<h2>Statistics</h2>
|
||
|
||
[% INCLUDE showBuildStats %]
|
||
|
||
|
||
[% END %]
|