summaryrefslogtreecommitdiff
path: root/app/views/layouts/nav/_dashboard.html.haml
blob: e0d8d9cb402d81e1d397d44581ee6e4dfce75d2b (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
%ul.list-unstyled.navbar-sub-nav
  = nav_link(path: ['root#index', 'projects#trending', 'projects#starred', 'dashboard/projects#index'], html_options: { id: 'nav-projects-dropdown', class: "home dropdown header-projects" }) do
    %a{ href: "#", data: { toggle: "dropdown" } }
      Projects
      = sprite_icon('angle-down', css_class: 'caret-down')
    .dropdown-menu.projects-dropdown-menu
      = render "layouts/nav/projects_dropdown/show"

  = nav_link(controller: ['dashboard/groups', 'explore/groups'], html_options: { class: "hidden-xs" }) do
    = link_to dashboard_groups_path, class: 'dashboard-shortcuts-groups', title: 'Groups' do
      Groups

  = nav_link(path: 'dashboard#activity', html_options: { class: "visible-lg" }) do
    = link_to activity_dashboard_path, class: 'dashboard-shortcuts-activity', title: 'Activity' do
      Activity

  = nav_link(controller: 'dashboard/milestones', html_options: { class: "visible-lg" }) do
    = link_to dashboard_milestones_path, class: 'dashboard-shortcuts-milestones', title: 'Milestones' do
      Milestones

  = nav_link(controller: 'dashboard/snippets', html_options: { class: "visible-lg" }) do
    = link_to dashboard_snippets_path, class: 'dashboard-shortcuts-snippets', title: 'Snippets' do
      Snippets

  %li.header-more.dropdown.hidden-lg
    %a{ href: "#", data: { toggle: "dropdown" } }
      More
      = sprite_icon('angle-down', css_class: 'caret-down')
    .dropdown-menu
      %ul
        = nav_link(controller: ['dashboard/groups', 'explore/groups'], html_options: { class: "visible-xs" }) do
          = link_to dashboard_groups_path, class: 'dashboard-shortcuts-groups', title: 'Groups' do
            Groups

        = nav_link(path: 'dashboard#activity') do
          = link_to activity_dashboard_path, title: 'Activity' do
            Activity

        = nav_link(controller: 'dashboard/milestones') do
          = link_to dashboard_milestones_path, class: 'dashboard-shortcuts-milestones', title: 'Milestones' do
            Milestones

        = nav_link(controller: 'dashboard/snippets') do
          = link_to dashboard_snippets_path, class: 'dashboard-shortcuts-snippets', title: 'Snippets' do
            Snippets

  -# Shortcut to Dashboard > Projects
  %li.hidden
    = link_to dashboard_projects_path, title: 'Projects', class: 'dashboard-shortcuts-projects' do
      Projects

  - if current_user.admin? || Gitlab::Sherlock.enabled?
    %li.line-separator.hidden-xs
  - if current_user.admin?
    = nav_link(controller: 'admin/dashboard') do
      = link_to admin_root_path, class: 'admin-icon', title: 'Admin area', aria: { label: "Admin area" }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
        = sprite_icon('admin', size: 18)
  - if Gitlab::Sherlock.enabled?
    %li
      = link_to sherlock_transactions_path, class: 'admin-icon', title: 'Sherlock Transactions',
        data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
        = icon('tachometer fw')