Created
July 19, 2010 14:33
-
-
Save LTe/481477 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%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