summaryrefslogtreecommitdiff
path: root/app/views/layouts/nav/_dashboard.html.haml
blob: b21f25e87cf3fc8c123dc5c4c6972810467e1e48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
%ul.nav.nav-sidebar
  = nav_link(path: 'dashboard#show', html_options: {class: 'home'}) do
    = link_to root_path, title: 'Home', class: 'shortcuts-activity' do
      %i.fa.fa-dashboard
      %span
        Activity
  = nav_link(path: 'dashboard#projects') do
    = link_to projects_dashboard_path, title: 'Projects', class: 'shortcuts-projects' do
      %i.fa.fa-cube
      %span
        Projects
  = nav_link(path: 'projects#starred') do
    = link_to starred_dashboard_projects_path, title: 'Starred Projects' do
      %i.fa.fa-star
      %span
        Starred Projects
  = nav_link(controller: :groups) do
    = link_to dashboard_groups_path, title: 'Groups' do
      %i.fa.fa-group
      %span
        Groups
  = nav_link(controller: :milestones) do
    = link_to dashboard_milestones_path, title: 'Milestones' do
      %i.fa.fa-clock-o
      %span
        Milestones
  = nav_link(path: 'dashboard#issues') do
    = link_to assigned_issues_dashboard_path, title: 'Issues', class: 'shortcuts-issues' do
      %i.fa.fa-exclamation-circle
      %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' do
      %i.fa.fa-tasks
      %span
        Merge Requests
        %span.count= current_user.assigned_merge_requests.opened.count
  = nav_link(controller: :help) do
    = link_to help_path, title: 'Help' do
      %i.fa.fa-question-circle
      %span
        Help