2016-06-16 23:09:34 +05:30
|
|
|
%header.navbar.navbar-fixed-top.navbar-gitlab.header-collapsed{ class: nav_header_class }
|
2015-09-25 12:07:36 +05:30
|
|
|
%div{ class: fluid_layout ? "container-fluid" : "container-fluid" }
|
2015-09-11 14:41:01 +05:30
|
|
|
.header-content
|
2016-06-02 11:05:42 +05:30
|
|
|
%button.side-nav-toggle{type: 'button'}
|
2015-09-11 14:41:01 +05:30
|
|
|
%span.sr-only Toggle navigation
|
|
|
|
= icon('bars')
|
2016-06-02 11:05:42 +05:30
|
|
|
%button.navbar-toggle{type: 'button'}
|
|
|
|
%span.sr-only Toggle navigation
|
|
|
|
= icon('angle-left')
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
.navbar-collapse.collapse
|
2016-06-02 11:05:42 +05:30
|
|
|
%ul.nav.navbar-nav
|
|
|
|
%li.hidden-sm.hidden-xs
|
|
|
|
= render 'layouts/search' unless current_controller?(:search)
|
2015-09-11 14:41:01 +05:30
|
|
|
%li.visible-sm.visible-xs
|
2015-12-23 02:04:40 +05:30
|
|
|
= link_to search_path, title: 'Search', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
2015-09-11 14:41:01 +05:30
|
|
|
= icon('search')
|
2016-06-02 11:05:42 +05:30
|
|
|
- if current_user
|
|
|
|
- if session[:impersonator_id]
|
|
|
|
%li.impersonation
|
|
|
|
= link_to admin_impersonation_path, method: :delete, title: 'Stop Impersonation', data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do
|
|
|
|
= icon('user-secret fw')
|
|
|
|
- if current_user.is_admin?
|
|
|
|
%li
|
|
|
|
= link_to admin_root_path, title: 'Admin Area', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= icon('wrench fw')
|
2015-09-11 14:41:01 +05:30
|
|
|
%li
|
2016-06-02 11:05:42 +05:30
|
|
|
= link_to dashboard_todos_path, title: 'Todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= icon('bell fw')
|
2016-06-16 23:09:34 +05:30
|
|
|
%span.badge.todos-pending-count{ class: ("hidden" if todos_pending_count == 0) }
|
|
|
|
= todos_pending_count
|
2016-06-02 11:05:42 +05:30
|
|
|
- if current_user.can_create_project?
|
|
|
|
%li
|
|
|
|
= link_to new_project_path, title: 'New project', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= icon('plus fw')
|
|
|
|
- if Gitlab::Sherlock.enabled?
|
|
|
|
%li
|
|
|
|
= link_to sherlock_transactions_path, title: 'Sherlock Transactions',
|
|
|
|
data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= icon('tachometer fw')
|
2015-09-25 12:07:36 +05:30
|
|
|
%li
|
2016-06-02 11:05:42 +05:30
|
|
|
= link_to destroy_user_session_path, class: 'logout', method: :delete, title: 'Sign out', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= icon('sign-out')
|
|
|
|
- else
|
2015-11-26 14:37:03 +05:30
|
|
|
%li
|
2016-06-02 11:05:42 +05:30
|
|
|
%div
|
|
|
|
= link_to "Sign in", new_session_path(:user, redirect_to_referer: 'yes'), class: 'btn btn-sign-in btn-success'
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
%h1.title= title
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
.header-logo
|
|
|
|
= link_to root_path, class: 'home', title: 'Dashboard', id: 'logo' do
|
|
|
|
= brand_header_logo
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
= yield :header_content
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
= render 'shared/outdated_browser'
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-01-29 22:53:50 +05:30
|
|
|
- if @project && !@project.empty_repo?
|
2016-06-02 11:05:42 +05:30
|
|
|
- if ref = @ref || @project.repository.root_ref
|
|
|
|
:javascript
|
|
|
|
var findFileURL = "#{namespace_project_find_file_path(@project.namespace, @project, ref)}";
|