Nested Resources not working for me...

This should be new_feedback_feedback_note_path(@feedback)

Michael Glaesemann grzm seespotcode net

script/generate scaffold doesn't produce forms that are useable for nested resources (though maybe there's a flag that I'm unaware of). I use the more traditional

form_for(:feedback_note,           :url => { :action => 'create', :feedback_id => @feedback.id }) do |f|

Michael Glaesemann grzm seespotcode net