routes.rb map.connect ':controller/:action/:id/:draw_id', :controller => "admin", :action => "edit_position"
In a view I have: <%= link_to "#[email protected][0].team}", { :controller => :admin, :action => :edit_position, :id =>@draw.positions[0].id, :draw_id => @draw.id } %> In my controller I do not receive the param :draw_id in my params[] Any thoughts? How do I do a link_to and pass in these 2 parameters :id and :draw_id Thanks! Shawn -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

