I read through a lot of pages on `has_one relationships and nested attributes but haven\'t been successful in making this work. Any help would be fantastic.
Each Use
Incase someone else is having the same issue, I resolved this by changing:
<%= f.fields_for @network do |fn| %> to <%= f.fields_for :network do |fn| %> and removing :network as an accessible attribute from the user model.
<%= f.fields_for @network do |fn| %>
<%= f.fields_for :network do |fn| %>
:network