This requires turning the outPath columns in the Builds and BuildSteps tables into separate tables, and so requires a schema upgrade.
15 lines
626 B
Plaintext
15 lines
626 B
Plaintext
[% WRAPPER layout.tt title="All builds" %]
|
|
[% PROCESS common.tt %]
|
|
|
|
<div class="page-header"><h1>All builds
|
|
[% IF job %]for Job [% project.name %]:[% jobset.name %]:[% job.name %]
|
|
[% ELSIF jobset %]for Jobset [% project.name %]:[% jobset.name %]
|
|
[% ELSIF project %] for Project <tt>[% project.name %]</tt>[% END %]</h1></div>
|
|
|
|
<p>Showing builds [% (page - 1) * resultsPerPage + 1 %] - [% (page - 1) * resultsPerPage + builds.size %] out of [% total %] in order of descending timestamp.</p>
|
|
|
|
[% INCLUDE renderPager %]
|
|
[% INCLUDE renderBuildList hideProjectName=project hideJobsetName=jobset hideJobName=job %]
|
|
|
|
[% END %]
|