debian-mirror-gitlab/app/views/shared/groups/_list.html.haml

9 lines
244 B
Text
Raw Normal View History

2016-06-02 11:05:42 +05:30
- if groups.any?
2018-03-17 18:26:18 +05:30
- user = local_assigns[:user]
2016-06-02 11:05:42 +05:30
%ul.content-list
- groups.each_with_index do |group, i|
2018-03-17 18:26:18 +05:30
= render "shared/groups/group", group: group, user: user
2016-06-02 11:05:42 +05:30
- else
2018-03-17 18:26:18 +05:30
.nothing-here-block= s_("GroupsEmptyState|No groups found")