diff --git a/src/root/all.tt b/src/root/all.tt index 4503facc..746b16c8 100644 --- a/src/root/all.tt +++ b/src/root/all.tt @@ -22,11 +22,8 @@ out of [% totalBuilds %] in order of descending timestamp.
[% END %] - [% INCLUDE renderNav %] -[% INCLUDE renderBuildList %] +[% INCLUDE renderBuildList hideProjectName=project hideJobsetName=jobset hideJobName=job %] [% INCLUDE renderNav %] - - [% END %] diff --git a/src/root/build.tt b/src/root/build.tt index 3a9fdd35..0abc96f5 100644 --- a/src/root/build.tt +++ b/src/root/build.tt @@ -436,10 +436,9 @@ [% IF relatedbuilds %] [% END %] diff --git a/src/root/common.tt b/src/root/common.tt index 4ed948cf..48fd4e3a 100644 --- a/src/root/common.tt +++ b/src/root/common.tt @@ -45,10 +45,8 @@ [%- BLOCK renderFullJobName -%] - - [% INCLUDE renderProjectName %]:[% INCLUDE renderJobsetName %]:[% INCLUDE renderJobName %] - -[% END %] +[% IF !hideProjectName; INCLUDE renderProjectName %]:[% END; IF !hideJobsetName; INCLUDE renderJobsetName %]:[% END; INCLUDE renderJobName %] +[%- END %] [%- BLOCK renderFullJobNameOfBuild -%] @@ -76,7 +74,9 @@Below are the latest builds for each job. It is ordered by the status change time (the timestamp of the last build that had a different build result status). That is, it shows the jobs that most recently changed from failed to successful or vice versa first.
-[% INCLUDE renderBuildList builds=latestBuilds showStatusChange=1 %] +[% INCLUDE renderBuildList builds=latestBuilds showStatusChange=1 + hideProjectName=project hideJobsetName=jobset hideJobName=job %] [% END %]