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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Sizov <valery@gitlab.com>2016-06-30 16:01:26 +0300
committerValery Sizov <valery@gitlab.com>2016-06-30 16:01:26 +0300
commit13fc95acc4b8ca418de2af383a6f0e1ccee9e9a2 (patch)
treebcde2cbe4d847135ebe226655a56f4c26833e024 /app/views/admin/groups
parent1a68a0a6f55049b4ad42222b0dc667fe625a7604 (diff)
Remove unnecessary parens
Diffstat (limited to 'app/views/admin/groups')
-rw-r--r--app/views/admin/groups/index.html.haml5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/views/admin/groups/index.html.haml b/app/views/admin/groups/index.html.haml
index 4f1996ef7ab..94aa5f5a942 100644
--- a/app/views/admin/groups/index.html.haml
+++ b/app/views/admin/groups/index.html.haml
@@ -2,7 +2,7 @@
- page_title "Groups"
= render "admin/dashboard/head"
-%div{ class: (container_class) }
+%div{ class: container_class }
%h3.page-title
Groups (#{number_with_delimiter(@groups.total_count)})
@@ -39,7 +39,6 @@
= link_to 'New Group', new_admin_group_path, class: "btn btn-new"
%ul.content-list
- - @groups.each do |group|
- = render 'group', group: group
+ = render @groups
= paginate @groups, theme: "gitlab"