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

group.html.haml « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 985200e253923af5c5eab034593a5354cd1a38d3 (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
!!! 5
%html{ lang: "en"}
  = render "layouts/head"
  %body{class: "#{app_theme} application"}
    = render "layouts/flash"
    = render "layouts/head_panel", title: "#{@group.name}"
    .container
      %ul.main_menu
        = nav_link(path: 'groups#show', html_options: {class: 'home'}) do
          = link_to "Home", group_path(@group), title: "Home"
        = nav_link(path: 'groups#issues') do
          = link_to issues_group_path(@group) do
            Issues
            %span.count= current_user.assigned_issues.opened.of_group(@group).count
        = nav_link(path: 'groups#merge_requests') do
          = link_to merge_requests_group_path(@group) do
            Merge Requests
            %span.count= current_user.cared_merge_requests.of_group(@group).count
        = nav_link(path: 'groups#search') do
          = link_to "Search", search_group_path(@group)
        = nav_link(path: 'groups#people') do
          = link_to "People", people_group_path(@group)

      .content= yield