forked from lix-project/hydra
57b2bb0674
Previously, for scheduled builds, "timestamp" contained the time the build was added to the queue, while for finished builds, it was the time the build finished. Now it's always the former.
13 lines
536 B
Plaintext
13 lines
536 B
Plaintext
[% WRAPPER layout.tt title="Latest builds" _
|
|
(job ? " for job $project.name:$jobset.name:$job.name" :
|
|
jobset ? " for jobset $project.name:$jobset.name" :
|
|
project ? " for project $project.name" : "") %]
|
|
[% PROCESS common.tt %]
|
|
|
|
<p>Showing builds [% (page - 1) * resultsPerPage + 1 %] - [% (page - 1) * resultsPerPage + builds.size %] out of [% total %] in order of descending finish time.</p>
|
|
|
|
[% INCLUDE renderBuildList hideProjectName=project hideJobsetName=jobset hideJobName=job %]
|
|
[% INCLUDE renderPager %]
|
|
|
|
[% END %]
|