Guest User

Untitled

a guest
Jun 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. -semantic_form_for @user, :url => admin_save_user_path do |form|
  2. -form.inputs :name => "Użytkownik" do
  3. =form.input :pesel, :label => "Pesel"
  4. =form.input :login, :label => "Login"
  5. =form.input :email, :label => "Email"
  6. =form.input :password, :label => "Hasło", :as => :string, :input_html => {:value => @random_password}
  7. =form.input :password_confirmation, :label => "Powtórka hasła", :as => :string, :input_html => {:value => @random_password}
  8.  
  9. -form.inputs :name => "Profil", :for => @user.profile do |profile_form|
  10. = profile_form.input :full_name, :as => :string
  11.  
  12. -form.buttons do
  13. =form.commit_button "Dodaj użytkownika"
Add Comment
Please, Sign In to add comment