I have the following models defined in my application
Here is my user model:
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
attr_accessible :email, :password, :password_confirmation, :remember_me, :profile_attributes
has_one :profile
accepts_nested_attributes_for :profile
end
Here is my model of my profile:
class Profile < ActiveRecord::Base
attr_accessible :first_name, :last_name, :organization, :telephone_number, :user_id, :address_attributes
belongs_to :user
has_one :address
accepts_nested_attributes_for :address
end
Here is my address model:
class Address < ActiveRecord::Base
attr_accessible :street, :street_cont, :city, :state, :zip_code
belongs_to :profile
end
I use the program for authentication, therefore, in my opinion, for registration I have the following:
<% resource.build_profile %>
<h2>Sign up</h2>
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= devise_error_messages! %>
<p><%= f.label :email %><br />
<%= f.email_field :email %></p>
<p><%= f.label :password %><br />
<%= f.password_field :password %></p>
<p><%= f.label :password_confirmation %><br />
<%= f.password_field :password_confirmation %></p>
<%=f.fields_for :profile do |profile_form| %>
<p><%= profile_form.label :first_name %><br />
<%= profile_form.text_field :first_name %></p>
<p><%= profile_form.label :last_name %><br />
<%= profile_form.text_field :last_name %></p>
<p><%= profile_form.label :organization %><br />
<%= profile_form.text_field :organization %></p>
<p><%= profile_form.label :telephone_number %><br />
<%= profile_form.text_field :telephone_number %></p>
<%=f.fields_for :address do |address_form| %>
<p><%= address_form.label :street %><br />
<%= address_form.text_field :street %></p>
<p><%= address_form.label :street_cont %><br />
<%= address_form.text_field :street_cont %></p>
<p><%= address_form.label :city %><br />
<%= address_form.text_field :city %></p>
<p><%= address_form.label :state %><br />
<%= address_form.text_field :state %></p>
<p><%= address_form.label :zip_code %><br />
<%= address_form.text_field :zip_code %></p>
<% end %>
<% end %>
<p><%= f.submit "Sign up" %></p>
<% end %>
<%= render :partial => "devise/shared/links" %>
The form displays correctly, but when I look at the source, I see this for the address fields:
<input id="user_address_street" name="user[address][street]" size="30" type="text" />
for the profile section that I see:
<input id="user_profile_attributes_first_name" name="user[profile_attributes][first_name]" size="30" type="text" />
When I save the form, the user and profile are saved in the database, but not the address. Obviously, I am doing something wrong with my model relationship, but I do not know how to solve it.
Any help would be appreciated.