2012-03-01 17:33:46 +00:00
|
|
|
- content_for :submenu do
|
2015-03-17 17:43:03 +00:00
|
|
|
nav.navbar.navbar-default.submenu role="navigation"
|
|
|
|
.container-fluid ng-cloak = true
|
2014-06-04 09:56:44 +01:00
|
|
|
.navbar-header
|
2015-03-17 17:43:03 +00:00
|
|
|
ul.nav.navbar-nav
|
2014-06-04 12:24:02 +01:00
|
|
|
- if @build_list && @build_list.project
|
2015-03-17 17:43:03 +00:00
|
|
|
li
|
2014-06-04 12:24:02 +01:00
|
|
|
= link_to project_path(@build_list.project) do
|
|
|
|
= fa_visibility_icon @build_list.project
|
|
|
|
= @build_list.project.name_with_owner
|
2014-06-04 09:56:44 +01:00
|
|
|
- else
|
2015-03-17 17:43:03 +00:00
|
|
|
li class=('active' if controller_name == 'build_lists')
|
2014-06-04 09:56:44 +01:00
|
|
|
= link_to t('layout.projects.list_header'), build_lists_path
|
2015-03-17 17:43:03 +00:00
|
|
|
li class=('active' if controller_name == 'product_build_lists')
|
2014-06-04 09:56:44 +01:00
|
|
|
= link_to t('layout.products.list_header'), product_build_lists_path
|
2015-03-17 17:43:03 +00:00
|
|
|
|
2015-03-18 15:54:01 +00:00
|
|
|
== render 'server_status' if action_name == 'index'
|