I’m really baffled since this should be very textbook:
<% form_for :person, :url => { :controller => “people”, :action =>
“update”, :id => @person.id } do |form| %>
should produce
but instead it produces
What’s going on? I really thought I could just do
<% form_for :person, :url => { :action => “update”, :id =>
@person.id } do |form| %>
but that produces the same result.