I added that line but still dont work

User Form

<%= form_for @user do |f| %>
<%= render 'shared/error_messages', :record => @user %>
>>> Some Field Tags <<<
  <p>
  <%= f.fields_for @user.build_profile do |builder| %>
  <%= render 'profile_form', :f => builder %>
  <% end %>
  </p>
  <p><%= f.submit (@user.new_record? ? "Registrarse" : "Editar") %></p>
<% end %>

Profile Fields

<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :surname %><br />
<%= f.text_field :surname %>
</p>

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to