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

index.html.haml « groups « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9307812d495e50d42a3a1d5f7260111130c01cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- page_title "Groups"
= render 'dashboard/groups_head'

.gray-content-block
  - if current_user.can_create_group?
    %span.pull-right.hidden-xs
      = link_to new_group_path, class: "btn btn-new" do
        %i.fa.fa-plus
        New Group
  .title Welcome to the groups!
  Group members have access to all group projects.

%ul.content-list
  - @group_members.each do |group_member|
    - group = group_member.group
    = render 'shared/groups/group', group: group, group_member: group_member

= paginate @group_members