Commit 805142a0448d05461ec5f63557e137c58b8aadcf

Authored by Dmitriy Zaporozhets
2 parents 7909fba5 f30d5649

Merge pull request #653 from dalpo/652-admin_user_path

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 51 - @admin_project.users_projects.each do |tm|
52 52 %tr
53 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 55 %td= select_tag :tm_project_access, options_for_select(Project.access_options, tm.project_access), :class => "medium project-access-select", :disabled => :disabled
56 56 %td= link_to 'Edit Access', edit_admin_team_member_path(tm), :class => "btn small"
57 57 %td= link_to 'Remove from team', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete, :class => "btn danger small"
... ...