38 lines
1.6 KiB
Text
38 lines
1.6 KiB
Text
%ul.nav.nav-sidebar
|
|
= nav_link(path: ['dashboard#show', 'root#show'], html_options: {class: 'home'}) do
|
|
= link_to dashboard_path, title: 'Home', class: 'shortcuts-activity', data: {placement: 'right'} do
|
|
= icon('dashboard fw')
|
|
%span
|
|
Your Projects
|
|
= nav_link(path: 'projects#starred') do
|
|
= link_to starred_dashboard_projects_path, title: 'Starred Projects', data: {placement: 'right'} do
|
|
= icon('star fw')
|
|
%span
|
|
Starred Projects
|
|
= nav_link(controller: :groups) do
|
|
= link_to dashboard_groups_path, title: 'Groups', data: {placement: 'right'} do
|
|
= icon('group fw')
|
|
%span
|
|
Groups
|
|
= nav_link(controller: :milestones) do
|
|
= link_to dashboard_milestones_path, title: 'Milestones', data: {placement: 'right'} do
|
|
= icon('clock-o fw')
|
|
%span
|
|
Milestones
|
|
= nav_link(path: 'dashboard#issues') do
|
|
= link_to assigned_issues_dashboard_path, title: 'Issues', class: 'shortcuts-issues', data: {placement: 'right'} do
|
|
= icon('exclamation-circle fw')
|
|
%span
|
|
Issues
|
|
%span.count= current_user.assigned_issues.opened.count
|
|
= nav_link(path: 'dashboard#merge_requests') do
|
|
= link_to assigned_mrs_dashboard_path, title: 'Merge Requests', class: 'shortcuts-merge_requests', data: {placement: 'right'} do
|
|
= icon('tasks fw')
|
|
%span
|
|
Merge Requests
|
|
%span.count= current_user.assigned_merge_requests.opened.count
|
|
= nav_link(controller: :help) do
|
|
= link_to help_path, title: 'Help', data: {placement: 'right'} do
|
|
= icon('question-circle fw')
|
|
%span
|
|
Help
|