_default.html.haml 2.54 KB
Newer Older
1
%header.navbar.navbar-fixed-top.navbar-gitlab{ class: nav_header_class }
2
  %div{ class: fluid_layout ? "container-fluid" : "container-fluid" }
3
    .header-content
4
      %button.navbar-toggle{type: 'button'}
5 6
        %span.sr-only Toggle navigation
        = icon('bars')
7

8
      .navbar-collapse.collapse
9
        %ul.nav.navbar-nav.pull-right
10 11 12
          - unless @disable_search_panel
            %li.hidden-sm.hidden-xs
              = render 'layouts/search'
13
          %li.visible-sm.visible-xs
Douwe Maan's avatar
Douwe Maan committed
14
            = link_to search_path, title: 'Search', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
15
              = icon('search')
16 17 18 19 20 21 22 23 24
          - if current_user
            - if session[:impersonator_id]
              %li.impersonation
                = link_to stop_impersonation_admin_users_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')
25
            %li
26 27 28 29 30 31 32 33 34 35 36 37
              = link_to dashboard_todos_path, title: 'Todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
                %span.badge.todos-pending-count
                  = todos_pending_count
            - 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')
38
            %li
39 40 41 42 43 44
              = 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
            .pull-right
              = link_to "Sign in", new_session_path(:user, redirect_to_referer: 'yes'), class: 'btn btn-sign-in btn-success'

45

46 47
      %h1.title= title

48
= render 'shared/outdated_browser'
49

50
- if @project && !@project.empty_repo?
51 52 53
  - if ref = @ref || @project.repository.root_ref
    :javascript
      var findFileURL = "#{namespace_project_find_file_path(@project.namespace, @project, ref)}";