debian-mirror-gitlab/app/views/dashboard/groups/index.html.haml

20 lines
569 B
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "Groups"
2015-09-25 12:07:36 +05:30
- header_title "Groups", dashboard_groups_path
= render 'dashboard/groups_head'
.gray-content-block
2015-04-26 12:48:37 +05:30
- if current_user.can_create_group?
2015-09-11 14:41:01 +05:30
%span.pull-right.hidden-xs
2015-04-26 12:48:37 +05:30
= link_to new_group_path, class: "btn btn-new" do
%i.fa.fa-plus
New Group
2015-09-25 12:07:36 +05:30
.title Welcome to the groups!
2015-04-26 12:48:37 +05:30
Group members have access to all group projects.
2015-09-25 12:07:36 +05:30
%ul.content-list
- @group_members.each do |group_member|
- group = group_member.group
= render 'shared/groups/group', group: group, group_member: group_member
2015-04-26 12:48:37 +05:30
= paginate @group_members