forked from lix-project/hydra
Remove default logo, replaced by text for now. Hide template in jobset edit.
This commit is contained in:
parent
f63e9a63b4
commit
bb4f470348
5 changed files with 21 additions and 10 deletions
|
@ -59,7 +59,7 @@ sub jobsetIndex {
|
|||
, "(select count(*) from JobsetEvalMembers where eval = me.id and exists(select 1 from Builds b where b.id = build and b.finished = 1 and b.buildStatus = 0))"
|
||||
]
|
||||
, '+as' => [ "nrBuilds", "nrScheduled", "nrFinished", "nrSucceeded" ]
|
||||
, rows => 5
|
||||
, rows => 6
|
||||
}
|
||||
) ];
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ sub begin :Private {
|
|||
$c->stash->{version} = $ENV{"HYDRA_RELEASE"} || "<devel>";
|
||||
$c->stash->{nixVersion} = $ENV{"NIX_RELEASE"} || "<devel>";
|
||||
$c->stash->{curTime} = time;
|
||||
$c->stash->{logo} = $ENV{"HYDRA_LOGO"} ? "/logo" : "/static/images/nixos-logo-only-hires.png" ;
|
||||
$c->stash->{logo} = $ENV{"HYDRA_LOGO"} ? "/logo" : "";
|
||||
$c->stash->{tracker} = $ENV{"HYDRA_TRACKER"} ;
|
||||
|
||||
if (scalar(@args) == 0 || $args[0] ne "static") {
|
||||
|
|
|
@ -90,14 +90,15 @@
|
|||
});
|
||||
</script>
|
||||
[% END %]
|
||||
|
||||
<h2>Most recent evaluations</h2>
|
||||
[% INCLUDE renderEvals nrShown=5 %]
|
||||
|
||||
[% IF !edit-%]
|
||||
<h2>Most recent evaluations</h2>
|
||||
[% INCLUDE renderEvals nrShown=5 %]
|
||||
|
||||
<a href="c.uri_for(c.controller('Jobset').action_for('evals'), [project.name, jobset.name])" class="btn">All evaluations</a>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<a href="[% c.uri_for(c.controller('Jobset').action_for('evals'), [project.name, jobset.name]) %]" class="btn">All evaluations</a>
|
||||
<br />
|
||||
<br />
|
||||
[% END %]
|
||||
[% IF !edit && activeJobsStatus -%]
|
||||
<h2>Status</h2>
|
||||
<table class="table table-striped table-condensed">
|
||||
|
|
|
@ -90,7 +90,13 @@
|
|||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</a>
|
||||
<a class="brand" href="[% c.uri_for(c.controller('Root').action_for('index')) %]"><img src="[% logo %]" alt="Hydra Logo" class="logo" /></a>
|
||||
<a class="brand" href="[% c.uri_for(c.controller('Root').action_for('index')) %]">
|
||||
[% IF logo == "" %]
|
||||
Hydra
|
||||
[% ELSE %]
|
||||
<img src="[% logo %]" alt="Hydra Logo" class="logo" />
|
||||
[% END %]
|
||||
</a>
|
||||
<div class="nav-collapse">
|
||||
[% PROCESS topbar.tt %]
|
||||
</div><!--/.nav-collapse -->
|
||||
|
|
|
@ -12,3 +12,7 @@ th {
|
|||
text-align: left;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.template {
|
||||
display: none;
|
||||
}
|
Loading…
Reference in a new issue