2010-01-07 14:25:12 +00:00
|
|
|
[% BLOCK makeSubMenu %]
|
2012-04-12 18:12:07 +00:00
|
|
|
<li class="dropdown">
|
2013-02-20 23:47:21 +00:00
|
|
|
<a class="dropdown-toggle" href="#" data-toggle="dropdown">[% title %]<b class="caret"></b></a>
|
2013-09-03 15:35:21 +00:00
|
|
|
<ul class="dropdown-menu">
|
2013-02-20 23:47:21 +00:00
|
|
|
[% content %]
|
|
|
|
</ul>
|
2010-01-07 14:25:12 +00:00
|
|
|
</li>
|
|
|
|
[% END %]
|
2014-01-10 10:04:28 +00:00
|
|
|
[% showPrivate = (isPrivateHydra && c.user_exists) || ! isPrivateHydra %]
|
2010-01-07 14:25:12 +00:00
|
|
|
|
2014-01-10 10:04:28 +00:00
|
|
|
[% IF showPrivate %]
|
2013-09-03 15:35:21 +00:00
|
|
|
<ul class="nav pull-left">
|
2013-02-20 15:24:54 +00:00
|
|
|
|
2013-10-14 18:07:26 +00:00
|
|
|
[% IF c.user_exists %]
|
|
|
|
[% INCLUDE menuItem uri = c.uri_for(c.controller('User').action_for('dashboard'), [c.user.username]) title = "Dashboard" %]
|
|
|
|
[% END %]
|
2013-02-20 15:24:54 +00:00
|
|
|
|
|
|
|
[% WRAPPER makeSubMenu title="Status" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2013-02-20 15:24:54 +00:00
|
|
|
uri = c.uri_for(c.controller('Root').action_for('queue'))
|
|
|
|
title = "Queue ("_ nrRunningBuilds _"/"_ nrQueuedBuilds _")" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2013-02-20 15:40:09 +00:00
|
|
|
uri = c.uri_for(c.controller('Root').action_for('status'))
|
2014-09-25 18:17:33 +00:00
|
|
|
title = "Running builds" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2013-02-20 15:40:09 +00:00
|
|
|
uri = c.uri_for(c.controller('Root').action_for('machines'))
|
2013-02-20 15:24:54 +00:00
|
|
|
title = "Machine status" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2013-02-21 16:27:17 +00:00
|
|
|
uri = c.uri_for(c.controller('Root').action_for('evals'))
|
|
|
|
title = "Latest evaluations" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2013-02-20 15:24:54 +00:00
|
|
|
uri = c.uri_for(c.controller('Root').action_for('all'))
|
2013-02-20 17:23:49 +00:00
|
|
|
title = "Latest builds" %]
|
2015-07-10 13:08:34 +00:00
|
|
|
[% INCLUDE menuItem
|
|
|
|
uri = c.uri_for(c.controller('Root').action_for('steps'))
|
|
|
|
title = "Latest steps" %]
|
2013-02-20 15:24:54 +00:00
|
|
|
[% END %]
|
2012-04-12 18:12:07 +00:00
|
|
|
|
|
|
|
[% IF project %]
|
2013-04-26 13:07:14 +00:00
|
|
|
[% WRAPPER makeSubMenu title="Project" %]
|
|
|
|
<li class="nav-header">[% HTML.escape(project.name) %]</li>
|
|
|
|
<li class="divider"></li>
|
2013-06-17 16:34:21 +00:00
|
|
|
[% INCLUDE menuItem uri = c.uri_for(c.controller('Project').action_for('project'), [project.name]) title = "Overview" %]
|
2013-02-20 17:23:49 +00:00
|
|
|
[% INCLUDE menuItem uri = c.uri_for(c.controller('Project').action_for('all'), [project.name]) title = "Latest builds" %]
|
2013-02-20 17:20:16 +00:00
|
|
|
[% INCLUDE menuItem uri = c.uri_for('/project' project.name 'channel' 'latest') title = "Channel" %]
|
2012-04-12 18:12:07 +00:00
|
|
|
[% END %]
|
|
|
|
[% END %]
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2012-04-12 18:12:07 +00:00
|
|
|
[% IF jobset %]
|
2013-04-26 13:07:14 +00:00
|
|
|
[% WRAPPER makeSubMenu title="Jobset" %]
|
|
|
|
<li class="nav-header">[% HTML.escape(jobset.name) %]</li>
|
|
|
|
<li class="divider"></li>
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2013-06-17 16:34:21 +00:00
|
|
|
uri = c.uri_for(c.controller('Jobset').action_for('jobset'), [project.name, jobset.name])
|
2012-04-12 18:12:07 +00:00
|
|
|
title = "Overview" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Jobset').action_for('evals'), [project.name, jobset.name])
|
|
|
|
title = "Evaluations" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Jobset').action_for('all'), [project.name, jobset.name])
|
2013-02-20 17:23:49 +00:00
|
|
|
title = "Latest builds" %]
|
2013-02-20 17:20:16 +00:00
|
|
|
[% INCLUDE menuItem uri = c.uri_for('/jobset' project.name jobset.name 'channel' 'latest') title = "Channel" %]
|
2012-04-12 18:12:07 +00:00
|
|
|
[% END %]
|
|
|
|
[% END %]
|
2013-01-22 13:41:02 +00:00
|
|
|
|
2012-04-12 18:12:07 +00:00
|
|
|
[% IF job %]
|
2013-04-26 13:07:14 +00:00
|
|
|
[% WRAPPER makeSubMenu title="Job" %]
|
|
|
|
<li class="nav-header">[% HTML.escape(job.name) %]</li>
|
|
|
|
<li class="divider"></li>
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Job').action_for('overview'), [project.name, jobset.name, job.name])
|
|
|
|
title = "Overview" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Job').action_for('all'), [project.name, jobset.name, job.name])
|
2013-02-20 17:23:49 +00:00
|
|
|
title = "Latest builds" %]
|
2013-02-22 11:00:32 +00:00
|
|
|
[% INCLUDE menuItem uri = c.uri_for('/job' project.name jobset.name job.name 'channel' 'latest') title = "Channel" %]
|
2012-04-12 18:12:07 +00:00
|
|
|
[% END %]
|
|
|
|
[% END %]
|
|
|
|
|
2013-10-31 09:03:54 +00:00
|
|
|
[% IF c.user_exists && (c.check_user_roles('admin') ||
|
|
|
|
c.check_user_roles('create-projects')) %]
|
2012-04-12 18:12:07 +00:00
|
|
|
[% WRAPPER makeSubMenu title="Admin" %]
|
2013-10-31 09:03:54 +00:00
|
|
|
[% IF c.check_user_roles('admin') || c.check_user_roles('create-projects') %]
|
2013-02-21 00:26:29 +00:00
|
|
|
[% INCLUDE menuItem uri = c.uri_for(c.controller('Project').action_for('create')) title = "Create project" %]
|
|
|
|
<li class="divider"></li>
|
|
|
|
[% END %]
|
2013-10-31 09:03:54 +00:00
|
|
|
[% IF c.check_user_roles('admin') %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Admin').action_for('machines'))
|
|
|
|
title = "Manage machines" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Admin').action_for('managenews'))
|
|
|
|
title = "Manage news" %]
|
2013-04-26 11:45:47 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Admin').action_for('users'))
|
|
|
|
title = "Manage users" %]
|
|
|
|
<li class="divider"></li>
|
2013-04-26 12:45:20 +00:00
|
|
|
[% INCLUDE menuItem
|
2013-01-22 13:41:02 +00:00
|
|
|
uri = c.uri_for(c.controller('Admin').action_for('clearfailedcache'))
|
2013-04-26 12:45:20 +00:00
|
|
|
title = "Clear failed builds cache"
|
2012-04-17 14:53:11 +00:00
|
|
|
confirmmsg = "Are you sure you want to clear the failed builds cache?"
|
|
|
|
class = "" %]
|
2013-04-26 12:45:20 +00:00
|
|
|
[% INCLUDE menuItem
|
2012-04-12 18:12:07 +00:00
|
|
|
uri = c.uri_for(c.controller('Admin').action_for('clear_queue_non_current'))
|
2013-10-04 13:40:43 +00:00
|
|
|
title = "Clear scheduled non-current builds from queue"
|
2012-04-17 14:53:11 +00:00
|
|
|
confirmmsg = "Are you sure you want to clear the queue?"
|
2013-02-20 15:14:30 +00:00
|
|
|
class = "" %]
|
2013-10-03 17:43:21 +00:00
|
|
|
[% INCLUDE menuItem
|
|
|
|
uri = c.uri_for(c.controller('Admin').action_for('clearvcscache'))
|
|
|
|
title = "Clear VCS caches"
|
|
|
|
confirmmsg = "Are you sure you want to clear the VCS cache?"
|
|
|
|
class = "" %]
|
2013-10-31 09:03:54 +00:00
|
|
|
[% END %]
|
2012-04-12 18:12:07 +00:00
|
|
|
[% END %]
|
|
|
|
[% END %]
|
|
|
|
|
2013-02-20 15:14:30 +00:00
|
|
|
</ul>
|
2014-01-10 10:04:28 +00:00
|
|
|
[% END %]
|
2013-02-22 14:45:10 +00:00
|
|
|
|
2013-09-03 15:35:21 +00:00
|
|
|
<ul class="nav pull-right">
|
2013-02-22 14:45:10 +00:00
|
|
|
|
2014-01-10 10:04:28 +00:00
|
|
|
[% IF showPrivate %]
|
|
|
|
<form class="navbar-search" action="[% c.uri_for('/search') %]">
|
|
|
|
<input name="query" type="text" class="search-query span2" placeholder="Search" [% HTML.attributes(value => c.req.params.query) %]/>
|
|
|
|
</form>
|
|
|
|
[% END %]
|
2013-05-09 12:36:51 +00:00
|
|
|
[% IF c.user_exists %]
|
|
|
|
[% INCLUDE menuItem uri = c.uri_for(c.controller('User').action_for('edit'), [c.user.username]) title = "Preferences" %]
|
2013-07-08 21:54:40 +00:00
|
|
|
<li>
|
|
|
|
<a href="#" id="persona-signout">Sign out</a>
|
|
|
|
</li>
|
2013-05-09 12:36:51 +00:00
|
|
|
[% ELSE %]
|
2013-11-06 13:38:36 +00:00
|
|
|
[% IF personaEnabled %]
|
|
|
|
[% WRAPPER makeSubMenu title="Sign in" %]
|
|
|
|
<li>
|
|
|
|
<a href="#" id="persona-signin">
|
2013-11-06 21:20:57 +00:00
|
|
|
<img src="[% c.uri_for("/static/images/persona_sign_in_blue.png") %]" alt="Sign in with Persona" />
|
2013-11-06 13:38:36 +00:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li class="divider"></li>
|
|
|
|
<li>
|
|
|
|
<a href="#hydra-signin" data-toggle="modal">Sign in with a Hydra account</a>
|
|
|
|
</li>
|
|
|
|
[% END %]
|
|
|
|
[% ELSE %]
|
2013-07-09 12:39:28 +00:00
|
|
|
<li>
|
2013-11-06 13:38:36 +00:00
|
|
|
<a href="#hydra-signin" data-toggle="modal">Sign in</a>
|
2013-07-09 12:39:28 +00:00
|
|
|
</li>
|
|
|
|
[% END %]
|
2013-05-09 12:36:51 +00:00
|
|
|
[% END %]
|
2013-02-22 14:45:10 +00:00
|
|
|
|
2013-05-09 12:36:51 +00:00
|
|
|
</ul>
|