From f30d56494e45d44e44ee96407f86bac04510424e Mon Sep 17 00:00:00 2001 From: Andrea Dal Ponte Date: Fri, 6 Apr 2012 12:00:13 +0200 Subject: [PATCH] admin_user_path correction --- app/views/admin/projects/show.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml index 6685738b..e3f5c3b5 100644 --- a/app/views/admin/projects/show.html.haml +++ b/app/views/admin/projects/show.html.haml @@ -51,7 +51,7 @@ - @admin_project.users_projects.each do |tm| %tr %td - = link_to tm.user_name, admin_users_path(tm.user) + = link_to tm.user_name, admin_user_path(tm.user) %td= select_tag :tm_project_access, options_for_select(Project.access_options, tm.project_access), :class => "medium project-access-select", :disabled => :disabled %td= link_to 'Edit Access', edit_admin_team_member_path(tm), :class => "btn small" %td= link_to 'Remove from team', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete, :class => "btn danger small"