2017-09-06 06:58:24 -04:00
|
|
|
%header.navbar.navbar-gitlab.navbar-gitlab-new
|
2016-12-22 06:00:09 -05:00
|
|
|
%a.sr-only.gl-accessibility{ href: "#content-body", tabindex: "1" } Skip to content
|
2016-12-23 04:37:12 -05:00
|
|
|
.container-fluid
|
2015-06-01 09:45:36 -04:00
|
|
|
.header-content
|
2017-09-06 06:58:24 -04:00
|
|
|
.title-container
|
|
|
|
%h1.title
|
|
|
|
= link_to root_path, title: 'Dashboard', id: 'logo' do
|
|
|
|
= brand_header_logo
|
|
|
|
%span.logo-text.hidden-xs
|
|
|
|
= render 'shared/logo_type.svg'
|
2017-03-18 08:01:00 -04:00
|
|
|
|
2017-09-06 06:58:24 -04:00
|
|
|
- if current_user
|
|
|
|
= render "layouts/nav/dashboard"
|
|
|
|
- else
|
|
|
|
= render "layouts/nav/explore"
|
2017-03-18 08:01:00 -04:00
|
|
|
|
2015-06-01 09:45:36 -04:00
|
|
|
.navbar-collapse.collapse
|
2016-03-22 09:56:07 -04:00
|
|
|
%ul.nav.navbar-nav
|
2017-09-06 06:58:24 -04:00
|
|
|
- if current_user
|
|
|
|
= render 'layouts/header/new_dropdown'
|
2016-03-08 19:01:33 -05:00
|
|
|
%li.hidden-sm.hidden-xs
|
2016-04-11 19:04:42 -04:00
|
|
|
= render 'layouts/search' unless current_controller?(:search)
|
2017-03-02 05:43:48 -05:00
|
|
|
%li.visible-sm-inline-block.visible-xs-inline-block
|
2016-07-12 09:30:37 -04:00
|
|
|
= link_to search_path, title: 'Search', aria: { label: "Search" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
2015-06-01 09:45:36 -04:00
|
|
|
= icon('search')
|
2016-03-01 13:31:52 -05:00
|
|
|
- if current_user
|
2017-08-10 16:13:38 -04:00
|
|
|
%li.user-counter
|
2017-09-06 06:58:24 -04:00
|
|
|
= link_to assigned_issues_dashboard_path, title: 'Issues', class: 'dashboard-shortcuts-issues', aria: { label: "Issues" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
2017-08-04 15:37:00 -04:00
|
|
|
= custom_icon('issues')
|
2017-04-19 11:17:46 -04:00
|
|
|
- issues_count = assigned_issuables_count(:issues)
|
2017-04-06 14:17:07 -04:00
|
|
|
%span.badge.issues-count{ class: ('hidden' if issues_count.zero?) }
|
|
|
|
= number_with_delimiter(issues_count)
|
2017-08-10 16:13:38 -04:00
|
|
|
%li.user-counter
|
2017-09-06 06:58:24 -04:00
|
|
|
= link_to assigned_mrs_dashboard_path, title: 'Merge requests', class: 'dashboard-shortcuts-merge_requests', aria: { label: "Merge requests" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
2017-03-29 17:16:57 -04:00
|
|
|
= custom_icon('mr_bold')
|
2017-04-19 11:17:46 -04:00
|
|
|
- merge_requests_count = assigned_issuables_count(:merge_requests)
|
2017-04-06 14:17:07 -04:00
|
|
|
%span.badge.merge-requests-count{ class: ('hidden' if merge_requests_count.zero?) }
|
|
|
|
= number_with_delimiter(merge_requests_count)
|
2017-08-10 16:13:38 -04:00
|
|
|
%li.user-counter
|
2017-03-17 06:58:19 -04:00
|
|
|
= link_to dashboard_todos_path, title: 'Todos', aria: { label: "Todos" }, class: 'shortcuts-todos', data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
2017-08-10 16:13:38 -04:00
|
|
|
= custom_icon('todo_done')
|
2017-04-06 14:17:07 -04:00
|
|
|
%span.badge.todos-count{ class: ('hidden' if todos_pending_count.zero?) }
|
2017-02-21 14:21:49 -05:00
|
|
|
= todos_count_format(todos_pending_count)
|
2016-06-27 07:46:27 -04:00
|
|
|
%li.header-user.dropdown
|
2017-09-06 06:58:24 -04:00
|
|
|
= link_to current_user, class: user_dropdown_class, data: { toggle: "dropdown" } do
|
|
|
|
= image_tag avatar_icon(current_user, 23), width: 23, height: 23, class: "header-user-avatar"
|
|
|
|
= custom_icon('caret_down')
|
2016-06-27 07:46:27 -04:00
|
|
|
.dropdown-menu-nav.dropdown-menu-align-right
|
|
|
|
%ul
|
2017-04-19 12:43:57 -04:00
|
|
|
%li.current-user
|
|
|
|
.user-name.bold
|
|
|
|
= current_user.name
|
|
|
|
@#{current_user.username}
|
|
|
|
%li.divider
|
2016-06-27 07:46:27 -04:00
|
|
|
%li
|
2017-05-26 11:59:45 -04:00
|
|
|
= link_to "Profile", current_user, class: 'profile-link', data: { user: current_user.username }
|
2016-07-05 08:40:29 -04:00
|
|
|
%li
|
2017-05-26 11:59:45 -04:00
|
|
|
= link_to "Settings", profile_path
|
2017-09-06 06:58:24 -04:00
|
|
|
- if current_user
|
|
|
|
%li
|
|
|
|
= link_to "Help", help_path
|
2016-06-27 07:46:27 -04:00
|
|
|
%li.divider
|
|
|
|
%li
|
2017-05-26 11:59:45 -04:00
|
|
|
= link_to "Sign out", destroy_user_session_path, method: :delete, class: "sign-out-link"
|
2017-09-06 06:58:24 -04:00
|
|
|
- if session[:impersonator_id]
|
|
|
|
%li.impersonation
|
|
|
|
= link_to admin_impersonation_path, class: 'impersonation-btn', method: :delete, title: "Stop impersonation", aria: { label: 'Stop impersonation' }, data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do
|
|
|
|
= icon('user-secret')
|
2016-03-01 13:31:52 -05:00
|
|
|
- else
|
2016-03-22 09:56:07 -04:00
|
|
|
%li
|
|
|
|
%div
|
2017-09-06 06:58:24 -04:00
|
|
|
= link_to "Sign in / Register", new_session_path(:user, redirect_to_referer: 'yes'), class: 'btn btn-sign-in'
|
2016-03-01 13:31:52 -05:00
|
|
|
|
2017-09-06 06:58:24 -04:00
|
|
|
%button.navbar-toggle.hidden-sm.hidden-md.hidden-lg{ type: 'button' }
|
2017-03-29 17:16:57 -04:00
|
|
|
%span.sr-only Toggle navigation
|
2017-09-06 06:58:24 -04:00
|
|
|
= icon('ellipsis-v', class: 'js-navbar-toggle-right')
|
|
|
|
= icon('times', class: 'js-navbar-toggle-left')
|
2016-03-22 07:33:38 -04:00
|
|
|
|
2014-12-15 05:11:38 -05:00
|
|
|
= render 'shared/outdated_browser'
|