summaryrefslogtreecommitdiff
path: root/app/views/admin/users/show.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-21 14:16:48 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-21 14:16:48 +0200
commitd1e63c7df285740db9672ba023383c83b83fd03b (patch)
tree2e2ed1f08c8abe19d800948dbe182dc923dc5108 /app/views/admin/users/show.html.haml
parent96ba1708ac9d724d1d941749b3a4d457b8fa93a4 (diff)
downloadgitlab-ce-d1e63c7df285740db9672ba023383c83b83fd03b.tar.gz
Reporter cant create MR. Show user authorized projects in Admin area
Diffstat (limited to 'app/views/admin/users/show.html.haml')
-rw-r--r--app/views/admin/users/show.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/users/show.html.haml b/app/views/admin/users/show.html.haml
index db132359c7f..a3be6614136 100644
--- a/app/views/admin/users/show.html.haml
+++ b/app/views/admin/users/show.html.haml
@@ -106,8 +106,8 @@
%td= link_to group.name, admin_group_path(group)
-- if @admin_user.personal_projects.present?
- %h5 Personal Projects:
+- if @admin_user.authorized_projects.present?
+ %h5 Authorized Projects:
%br
%table.zebra-striped
@@ -118,7 +118,7 @@
%th
%th
- - @admin_user.tm_in_personal_projects.each do |tm|
+ - @admin_user.tm_in_authorized_projects.each do |tm|
- project = tm.project
%tr
%td= link_to project.name_with_namespace, admin_project_path(project)