1) Remove links from your model
accepts_nested_attributes_for :konkurrancer
and add Konkurrancer to your model
accepts_nested_attributes_for :link
2) In the controller edit action, delete
@konkurrancer.link_attributes.build
and in the new controller action add
@konkurrances.build_link
3) In the view file, replace
<%= f.simple_fields_for :link_attributes do |d| %>
with
<%= f.simple_fields_for :link do |d| %>
source
share