Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_app_menu.html.haml « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 025314891f8107e1882848910505233fedc97bf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%ul.main_menu
  %li.home{class: tab_class(:root)}
    = link_to "Home", root_path, title: "Home"

  %li{class: tab_class(:dash_issues)}
    = link_to dashboard_issues_path do
      Issues
      %span.count= current_user.assigned_issues.opened.count

  %li{class: tab_class(:dash_mr)}
    = link_to dashboard_merge_requests_path do
      Merge Requests
      %span.count= current_user.cared_merge_requests.count

  %li{class: tab_class(:search)}
    = link_to "Search", search_path

  %li{class: tab_class(:help)}
    = link_to "Help", help_path