2017-02-13 10:56:27 -05:00
|
|
|
%ul
|
2017-02-13 10:21:52 -05:00
|
|
|
= nav_link(path: ['root#index', 'projects#trending', 'projects#starred', 'dashboard/projects#index'], html_options: {class: "#{project_tab_class} home"}) do
|
2017-03-30 11:14:56 -04:00
|
|
|
= link_to dashboard_projects_path, title: 'Projects', class: 'dashboard-shortcuts-projects' do
|
|
|
|
.shortcut-mappings
|
2017-04-06 09:27:48 -04:00
|
|
|
.key
|
|
|
|
= icon('arrow-up', 'aria-label' => 'hidden')
|
|
|
|
P
|
2017-03-29 14:06:10 -04:00
|
|
|
%span
|
|
|
|
Projects
|
2017-02-13 10:21:52 -05:00
|
|
|
= nav_link(path: 'dashboard#activity') do
|
2017-03-30 11:14:56 -04:00
|
|
|
= link_to activity_dashboard_path, class: 'dashboard-shortcuts-activity', title: 'Activity' do
|
|
|
|
.shortcut-mappings
|
2017-04-06 09:27:48 -04:00
|
|
|
.key
|
|
|
|
= icon('arrow-up', 'aria-label' => 'hidden')
|
|
|
|
A
|
2017-03-29 14:06:10 -04:00
|
|
|
%span
|
|
|
|
Activity
|
2017-02-13 10:21:52 -05:00
|
|
|
- if koding_enabled?
|
|
|
|
= nav_link(controller: :koding) do
|
|
|
|
= link_to koding_path, title: 'Koding' do
|
2016-10-27 16:45:38 -04:00
|
|
|
%span
|
2017-02-13 10:21:52 -05:00
|
|
|
Koding
|
|
|
|
= nav_link(controller: [:groups, 'groups/milestones', 'groups/group_members']) do
|
2017-03-30 11:14:56 -04:00
|
|
|
= link_to dashboard_groups_path, class: 'dashboard-shortcuts-groups', title: 'Groups' do
|
|
|
|
.shortcut-mappings
|
2017-04-06 09:27:48 -04:00
|
|
|
.key
|
|
|
|
= icon('arrow-up', 'aria-label' => 'hidden')
|
|
|
|
G
|
2017-03-29 14:06:10 -04:00
|
|
|
%span
|
|
|
|
Groups
|
2017-02-13 10:21:52 -05:00
|
|
|
= nav_link(controller: 'dashboard/milestones') do
|
2017-03-30 11:14:56 -04:00
|
|
|
= link_to dashboard_milestones_path, class: 'dashboard-shortcuts-milestones', title: 'Milestones' do
|
|
|
|
.shortcut-mappings
|
2017-04-06 09:27:48 -04:00
|
|
|
.key
|
|
|
|
= icon('arrow-up', 'aria-label' => 'hidden')
|
|
|
|
L
|
2017-03-29 14:06:10 -04:00
|
|
|
%span
|
|
|
|
Milestones
|
2017-02-13 10:21:52 -05:00
|
|
|
= nav_link(path: 'dashboard#issues') do
|
2017-03-30 11:14:56 -04:00
|
|
|
= link_to assigned_issues_dashboard_path, title: 'Issues', class: 'dashboard-shortcuts-issues' do
|
|
|
|
.shortcut-mappings
|
2017-04-06 09:27:48 -04:00
|
|
|
.key
|
|
|
|
= icon('arrow-up', 'aria-label' => 'hidden')
|
|
|
|
I
|
2016-12-27 00:25:04 -05:00
|
|
|
%span
|
2017-02-13 10:21:52 -05:00
|
|
|
Issues
|
2017-03-02 16:34:42 -05:00
|
|
|
.badge= number_with_delimiter(cached_assigned_issuables_count(current_user, :issues, :opened))
|
2017-02-13 10:21:52 -05:00
|
|
|
= nav_link(path: 'dashboard#merge_requests') do
|
2017-03-30 11:14:56 -04:00
|
|
|
= link_to assigned_mrs_dashboard_path, title: 'Merge Requests', class: 'dashboard-shortcuts-merge_requests' do
|
|
|
|
.shortcut-mappings
|
2017-04-06 09:27:48 -04:00
|
|
|
.key
|
|
|
|
= icon('arrow-up', 'aria-label' => 'hidden')
|
|
|
|
M
|
2017-02-13 10:21:52 -05:00
|
|
|
%span
|
|
|
|
Merge Requests
|
2017-03-02 16:34:42 -05:00
|
|
|
.badge= number_with_delimiter(cached_assigned_issuables_count(current_user, :merge_requests, :opened))
|
2017-02-13 10:21:52 -05:00
|
|
|
= nav_link(controller: 'dashboard/snippets') do
|
2017-03-30 11:14:56 -04:00
|
|
|
= link_to dashboard_snippets_path, class: 'dashboard-shortcuts-snippets', title: 'Snippets' do
|
|
|
|
.shortcut-mappings
|
2017-04-06 09:27:48 -04:00
|
|
|
.key
|
|
|
|
= icon('arrow-up', 'aria-label' => 'hidden')
|
|
|
|
S
|
2017-03-29 14:06:10 -04:00
|
|
|
%span
|
|
|
|
Snippets
|
2017-02-13 12:11:31 -05:00
|
|
|
%li.divider
|
|
|
|
%li
|
2017-02-28 14:40:25 -05:00
|
|
|
= link_to "Help", help_path, title: 'About GitLab CE', class: 'about-gitlab'
|