summaryrefslogtreecommitdiff
path: root/app/views/admin/groups/index.html.haml
diff options
context:
space:
mode:
authorJohannes Schleifenbaum <johannes@js-webcoding.de>2013-02-17 11:00:02 +0100
committerJohannes Schleifenbaum <johannes@js-webcoding.de>2013-02-17 11:00:02 +0100
commit3ae7a45d5af0843ee6821c601b0825157c8d3025 (patch)
tree3824d2978e2dac98a99f985f7e3dfbc55a67bbfa /app/views/admin/groups/index.html.haml
parent9764ba6df2357ee93b9d4163f4011552be32de25 (diff)
downloadgitlab-ce-3ae7a45d5af0843ee6821c601b0825157c8d3025.tar.gz
Fix link to owner of group and team in admin interface
Diffstat (limited to 'app/views/admin/groups/index.html.haml')
-rw-r--r--app/views/admin/groups/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/groups/index.html.haml b/app/views/admin/groups/index.html.haml
index 25ce66575bf..6d5a293ef7f 100644
--- a/app/views/admin/groups/index.html.haml
+++ b/app/views/admin/groups/index.html.haml
@@ -28,7 +28,7 @@
%td= group.path
%td= group.projects.count
%td
- = link_to group.owner_name, admin_user_path(group.owner_id)
+ = link_to group.owner_name, admin_user_path(group.owner)
%td.bgred
= link_to 'Rename', edit_admin_group_path(group), id: "edit_#{dom_id(group)}", class: "btn btn-small"
= link_to 'Destroy', [:admin, group], confirm: "REMOVE #{group.name}? Are you sure?", method: :delete, class: "btn btn-small btn-remove"