2017-08-17 22:00:37 +05:30
|
|
|
%header.navbar.navbar-gitlab{ class: nav_header_class }
|
|
|
|
%a.sr-only.gl-accessibility{ href: "#content-body", tabindex: "1" } Skip to content
|
|
|
|
.container-fluid
|
2015-09-11 14:41:01 +05:30
|
|
|
.header-content
|
2017-08-17 22:00:37 +05:30
|
|
|
.dropdown.global-dropdown
|
|
|
|
%button.global-dropdown-toggle{ type: 'button', 'data-toggle' => 'dropdown' }
|
|
|
|
%span.sr-only Toggle navigation
|
|
|
|
= icon('bars')
|
|
|
|
.dropdown-menu-nav.global-dropdown-menu
|
|
|
|
- if current_user
|
|
|
|
= render 'layouts/nav/dashboard'
|
|
|
|
- else
|
|
|
|
= render 'layouts/nav/explore'
|
|
|
|
|
|
|
|
.header-logo
|
|
|
|
= link_to root_path, class: 'home', title: 'Dashboard', id: 'logo' do
|
|
|
|
= brand_header_logo
|
|
|
|
|
|
|
|
.title-container
|
|
|
|
%h1.title{ class: ('initializing' if @has_group_title) }= title
|
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)
|
2017-08-17 22:00:37 +05:30
|
|
|
%li.visible-sm-inline-block.visible-xs-inline-block
|
2016-08-24 12:49:21 +05:30
|
|
|
= link_to search_path, title: 'Search', aria: { label: "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
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to admin_impersonation_path, method: :delete, title: "Stop impersonation", aria: { label: 'Stop impersonation' }, data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do
|
2016-06-02 11:05:42 +05:30
|
|
|
= icon('user-secret fw')
|
2017-08-17 22:00:37 +05:30
|
|
|
- if current_user.admin?
|
2016-06-02 11:05:42 +05:30
|
|
|
%li
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to admin_root_path, title: 'Admin area', aria: { label: "Admin area" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
2016-06-02 11:05:42 +05:30
|
|
|
= icon('wrench fw')
|
|
|
|
- if current_user.can_create_project?
|
|
|
|
%li
|
2016-08-24 12:49:21 +05:30
|
|
|
= link_to new_project_path, title: 'New project', aria: { label: "New project" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
2016-06-02 11:05:42 +05:30
|
|
|
= 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')
|
2017-08-17 22:00:37 +05:30
|
|
|
%li
|
|
|
|
= link_to assigned_issues_dashboard_path, title: 'Issues', aria: { label: "Issues" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= icon('hashtag fw')
|
|
|
|
- issues_count = assigned_issuables_count(:issues)
|
|
|
|
%span.badge.issues-count{ class: ('hidden' if issues_count.zero?) }
|
|
|
|
= number_with_delimiter(issues_count)
|
|
|
|
%li
|
|
|
|
= link_to assigned_mrs_dashboard_path, title: 'Merge requests', aria: { label: "Merge requests" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= custom_icon('mr_bold')
|
|
|
|
- merge_requests_count = assigned_issuables_count(:merge_requests)
|
|
|
|
%span.badge.merge-requests-count{ class: ('hidden' if merge_requests_count.zero?) }
|
|
|
|
= number_with_delimiter(merge_requests_count)
|
|
|
|
%li
|
|
|
|
= link_to dashboard_todos_path, title: 'Todos', aria: { label: "Todos" }, class: 'shortcuts-todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= icon('check-circle fw')
|
|
|
|
%span.badge.todos-count{ class: ('hidden' if todos_pending_count.zero?) }
|
|
|
|
= todos_count_format(todos_pending_count)
|
2016-08-24 12:49:21 +05:30
|
|
|
%li.header-user.dropdown
|
|
|
|
= link_to current_user, class: "header-user-dropdown-toggle", data: { toggle: "dropdown" } do
|
|
|
|
= image_tag avatar_icon(current_user, 26), width: 26, height: 26, class: "header-user-avatar"
|
2016-11-03 12:29:30 +05:30
|
|
|
= icon('caret-down')
|
2016-08-24 12:49:21 +05:30
|
|
|
.dropdown-menu-nav.dropdown-menu-align-right
|
|
|
|
%ul
|
2017-08-17 22:00:37 +05:30
|
|
|
%li.current-user
|
|
|
|
.user-name.bold
|
|
|
|
= current_user.name
|
|
|
|
@#{current_user.username}
|
|
|
|
%li.divider
|
2016-08-24 12:49:21 +05:30
|
|
|
%li
|
|
|
|
= link_to "Profile", current_user, class: 'profile-link', aria: { label: "Profile" }, data: { user: current_user.username }
|
|
|
|
%li
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to "Settings", profile_path, aria: { label: "Settings" }
|
2016-08-24 12:49:21 +05:30
|
|
|
%li.divider
|
|
|
|
%li
|
|
|
|
= link_to "Sign out", destroy_user_session_path, method: :delete, class: "sign-out-link", aria: { label: "Sign out" }
|
2016-06-02 11:05:42 +05:30
|
|
|
- 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'
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
%button.navbar-toggle{ type: 'button' }
|
|
|
|
%span.sr-only Toggle navigation
|
|
|
|
= icon('ellipsis-v')
|
2016-06-16 23:09:34 +05:30
|
|
|
|
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)}";
|