Commit f30d56494e45d44e44ee96407f86bac04510424e
1 parent
7909fba5
Exists in
master
and in
4 other branches
admin_user_path correction
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/admin/projects/show.html.haml
@@ -51,7 +51,7 @@ | @@ -51,7 +51,7 @@ | ||
51 | - @admin_project.users_projects.each do |tm| | 51 | - @admin_project.users_projects.each do |tm| |
52 | %tr | 52 | %tr |
53 | %td | 53 | %td |
54 | - = link_to tm.user_name, admin_users_path(tm.user) | 54 | + = link_to tm.user_name, admin_user_path(tm.user) |
55 | %td= select_tag :tm_project_access, options_for_select(Project.access_options, tm.project_access), :class => "medium project-access-select", :disabled => :disabled | 55 | %td= select_tag :tm_project_access, options_for_select(Project.access_options, tm.project_access), :class => "medium project-access-select", :disabled => :disabled |
56 | %td= link_to 'Edit Access', edit_admin_team_member_path(tm), :class => "btn small" | 56 | %td= link_to 'Edit Access', edit_admin_team_member_path(tm), :class => "btn small" |
57 | %td= link_to 'Remove from team', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete, :class => "btn danger small" | 57 | %td= link_to 'Remove from team', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete, :class => "btn danger small" |