@@ -276,12 +277,6 @@
[% INCLUDE renderDateTime timestamp = build.timestamp %] |
[% IF build.finished && build.buildstatus != 4 %]
- [% IF build.iscachedbuild && cachedBuild %]
-
- Cached build: |
- [% INCLUDE renderFullBuildLink build=cachedBuild %] |
-
- [% END %]
Build started: |
[% IF build.starttime %][% INCLUDE renderDateTime timestamp = build.starttime %][% ELSE %](cached build)[% END %] |
diff --git a/src/root/channel-contents.tt b/src/root/channel-contents.tt
index 0c5a899b..90449ef9 100644
--- a/src/root/channel-contents.tt
+++ b/src/root/channel-contents.tt
@@ -2,8 +2,6 @@
[% PROCESS common.tt %]
[% USE HTML %]
-
-
This page provides a channel for the Nix package manager. If you have Nix
installed, you can subscribe to this channel by once executing
@@ -51,18 +49,18 @@ install the package simply by clicking on the packages below.
[% FOREACH pkg IN nixPkgs %]
- [% build = pkg.build %]
+ [% b = pkg.build %]
[% uri = "${curUri}/pkg/${pkg.name}.nixpkg" %]
- [% build.id %] |
- [% build.get_column('releasename') || build.nixname %] |
- [% build.system %] |
+ [% b.id %] |
+ [% b.get_column('releasename') || b.nixname %] |
+ [% b.system %] |
- [% IF build.homepage %]
- build.homepage) %]>[% HTML.escape(build.description) %]
+ [% IF b.homepage %]
+ b.homepage) %]>[% HTML.escape(b.description) %]
[% ELSE %]
- [% HTML.escape(build.description) %]
+ [% HTML.escape(b.description) %]
[% END %]
[% IF pkg.outName != 'out' %] [[% pkg.outName %]][% END %]
|
@@ -70,7 +68,6 @@ install the package simply by clicking on the packages below.
[% END %]
-
diff --git a/src/root/clone-build.tt b/src/root/clone-build.tt
index 95dede4f..cf2ba569 100644
--- a/src/root/clone-build.tt
+++ b/src/root/clone-build.tt
@@ -1,10 +1,8 @@
-[% WRAPPER layout.tt title="Clone Build" %]
+[% WRAPPER layout.tt title="Clone build ${build.id}" %]
[% PROCESS common.tt %]
[% USE HTML %]
[% edit=1 %]
-
-
Cloning allows you to perform a build with modified inputs.
diff --git a/src/root/common.tt b/src/root/common.tt
index 21cfb39c..fddeaecc 100644
--- a/src/root/common.tt
+++ b/src/root/common.tt
@@ -394,28 +394,6 @@ BLOCK renderInputDiff; %]
[% END;
-BLOCK hydraStatus %]
-
-
- Machine | Job | Type | Build | Step | What | Since |
-
-
- [% FOREACH step IN steps %]
-
- [% IF step.machine; step.machine.match('@(.*)').0; ELSE; 'localhost'; END %] |
- [% INCLUDE renderFullJobName project = step.build.project.name jobset = step.build.jobset.name job = step.build.job.name %] |
- [% step.system %] |
- [% step.build.id %] |
- [% step.stepnr %] |
- [% step.drvpath.match('-(.*)').0 %] |
- [% INCLUDE renderDuration duration = curTime - step.starttime %] |
-
- [% END %]
-
-
-[% END;
-
-
BLOCK renderPager %]