forked from lix-project/hydra
b06457c75c
But don't make the final element clickable when we're looking at that thing.
19 lines
574 B
Text
19 lines
574 B
Text
[% WRAPPER layout.tt
|
|
title=
|
|
(build ? "Evaluations containing build $build.id" :
|
|
jobset ? "Evaluations of jobset " _ makeNameTextForJobset(jobset) :
|
|
"Latest evaluations")
|
|
titleHTML =
|
|
(build ? "Evaluations containing build $build.id" :
|
|
jobset ? "Evaluations of jobset " _ linkToJobset(jobset) :
|
|
"Latest evaluations") %]
|
|
[% PROCESS common.tt %]
|
|
|
|
<p>Showing evaluations [% (page - 1) * resultsPerPage + 1 %] - [%
|
|
(page - 1) * resultsPerPage + evals.size %] out of [% total %].</p>
|
|
|
|
[% INCLUDE renderEvals %]
|
|
|
|
[% INCLUDE renderPager %]
|
|
|
|
[% END %]
|