On Apr 27, 10:57 pm, DVG
<devry...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
wrote:> Okay, so I have a many-to-many relationship between Users and Groups.
> When looking at the Group, I have the user rows being rendered via a
> partial. I want to have a "Remove" link next to each user name in
> turn, which calls the "remove user from group" action, but
I''m unsure
> how exactly to specify this with link_to.
>
You can pass as many url parmeters to link_to as you want, eg link_to
''Remove'', :action => "remove_user_from_group",
:id => @group.id, :foo
=> ''bar'', :baz => ''123''
Fred
> This is what I have:
>
> <tr>
> <td><%= @user.login %> <small>(<%= link_to
"Remove", :action =>
> "remove_user_from_group", :id => @group.id, :locals =>
{:login =>
> @user.login} %>)</small></td>
> </tr>