BigW Consortium Gitlab

_default.html.haml 2.88 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.side-nav-toggle{type: 'button'}
5 6
        %span.sr-only Toggle navigation
        = icon('bars')
7 8
      %button.navbar-toggle{type: 'button'}
        %span.sr-only Toggle navigation
9
        = icon('ellipsis-v')
10

11
      .navbar-collapse.collapse
12
        %ul.nav.navbar-nav
13
          %li.hidden-sm.hidden-xs
14
            = render 'layouts/search' unless current_controller?(:search)
15
          %li.visible-sm.visible-xs
16
            = link_to search_path, title: 'Search', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
17
              = icon('search')
18 19 20
          - if current_user
            - if session[:impersonator_id]
              %li.impersonation
21
                = link_to admin_impersonation_path, method: :delete, title: 'Stop Impersonation', data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do
22 23 24 25 26
                  = 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')
27
            %li
28
              = link_to dashboard_todos_path, title: 'Todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
Jacob Schatz committed
29
                = icon('bell fw')
30
                %span.badge.todos-pending-count{ class: ("hidden" if todos_pending_count == 0) }
31
                  = todos_pending_count
32 33 34 35 36 37 38 39 40
            - 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')
41
            %li
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
45 46 47
            %li
              %div
                = link_to "Sign in", new_session_path(:user, redirect_to_referer: 'yes'), class: 'btn btn-sign-in btn-success'
48

49

50 51
      %h1.title= title

52
      .header-logo
53
        = link_to root_path, class: 'home', title: 'Dashboard', id: 'logo' do
54 55
          = brand_header_logo

56 57
      = yield :header_content

58
= render 'shared/outdated_browser'
59

60
- if @project && !@project.empty_repo?
61 62 63
  - if ref = @ref || @project.repository.root_ref
    :javascript
      var findFileURL = "#{namespace_project_find_file_path(@project.namespace, @project, ref)}";