debian-mirror-gitlab/app/views/layouts/header/_default.html.haml

47 lines
2.3 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
%header.navbar.navbar-fixed-top.navbar-gitlab{ 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
%button.navbar-toggle{type: 'button'}
%span.sr-only Toggle navigation
= icon('bars')
.navbar-collapse.collapse
%ul.nav.navbar-nav.pull-right
2015-09-25 12:07:36 +05:30
- unless @disable_search_panel
%li.hidden-sm.hidden-xs
= render 'layouts/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')
2015-11-26 14:37:03 +05:30
- if session[:impersonator_id]
%li.impersonation
2015-12-23 02:04:40 +05:30
= link_to stop_impersonation_admin_users_path, method: :delete, title: 'Stop Impersonation', data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do
2015-11-26 14:37:03 +05:30
= icon('user-secret fw')
2015-09-11 14:41:01 +05:30
- if current_user.is_admin?
%li
2015-12-23 02:04:40 +05:30
= link_to admin_root_path, title: 'Admin Area', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
2015-09-11 14:41:01 +05:30
= icon('wrench fw')
2016-04-02 18:10:28 +05:30
%li
= link_to dashboard_todos_path, title: 'Todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
%span.badge.todos-pending-count
= todos_pending_count
2015-09-11 14:41:01 +05:30
- if current_user.can_create_project?
2015-09-25 12:07:36 +05:30
%li
2015-12-23 02:04:40 +05:30
= link_to new_project_path, title: 'New project', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
2015-09-11 14:41:01 +05:30
= icon('plus fw')
2015-11-26 14:37:03 +05:30
- if Gitlab::Sherlock.enabled?
%li
= link_to sherlock_transactions_path, title: 'Sherlock Transactions',
2015-12-23 02:04:40 +05:30
data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
2015-11-26 14:37:03 +05:30
= icon('tachometer fw')
2015-09-11 14:41:01 +05:30
%li
2015-12-23 02:04:40 +05:30
= link_to destroy_user_session_path, class: 'logout', method: :delete, title: 'Sign out', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
2015-09-11 14:41:01 +05:30
= icon('sign-out')
%h1.title= title
= render 'shared/outdated_browser'
2016-01-29 22:53:50 +05:30
- if @project && !@project.empty_repo?
:javascript
2016-04-02 18:10:28 +05:30
var findFileURL = "#{namespace_project_find_file_path(@project.namespace, @project, @ref || @project.repository.root_ref)}";