Skip to content

Instantly share code, notes, and snippets.

@LTe
Created July 19, 2010 14:33
Show Gist options
  • Save LTe/481477 to your computer and use it in GitHub Desktop.
Save LTe/481477 to your computer and use it in GitHub Desktop.
<%form_for :user, :url => user_profile_path(@user), :html => { :method => :put } do |f|%>
<% f.fields_for @user.user_profile do |pf|%>
<%= pf.label t("profile.name")%>
<%= pf.text_field :name%>
<% end %>
<% f.fields_for :languages do |lang|%>
%p
<%= lang.label t("profile.languages")%>
<%= lang.check_box :eng%>
<%end%>
<%= f.submit "Zapisz"%>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment