Reputation: 11940
I want to make a nested form step by step between two models , has_one The nested form should make me able to choose options from one of the models and save it into the other one
Upvotes: 0
Views: 79
Reputation: 3339
My most favorite tutorial on Nested Form. Here is the railscast tutorials. http://railscasts.com/episodes/196-nested-model-form-part-1
Upvotes: 1
Reputation: 54882
You can use the method fields_for
;)
See the documentation here:
http://apidock.com/rails/ActionView/Helpers/FormHelper/fields_for
Upvotes: 2