osem-fcy/app/views/devise/registrations/edit.html.haml

25 lines
1.6 KiB
Text
Raw Normal View History

2013-01-07 09:04:09 +01:00
.container
.row-fluid
= semantic_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f|
= f.inputs :name => "Profile" do
= f.fields_for :person do |p|
= p.input :first_name, :as => :string
= p.input :last_name, :as => :string
= p.input :public_name, :as => :string
2013-02-12 19:17:19 +01:00
= p.input :irc_nickname, :label => "IRC nick:", :as => :string
= p.input :company, :label => "Affiliation", :as => :string, :hint => "This could be a company, a user group, or nothing at all."
2013-01-08 07:38:24 +01:00
= image_tag current_user.person.avatar(:small)
= p.input :avatar, :label => "Picture", :hint => "Upload a new picture."
= p.input :biography, :input_html => {:rows => 5, "onkeyup" => "word_count(this, 'biography-count', 150)"}, :for => :person
2013-01-07 09:04:09 +01:00
You have used
%span#biography-count #{current_user.person.biography_word_count}
words. Biographies are limited to 150 words.
%br
%br
= f.inputs :name => "Account" do
= f.input :email, :required => false
= f.input :password, :hint => "(Leave blank if you don't want to change it)", :input_html => {:autocomplete => "off"}
= f.input :password_confirmation, :input_html => {:autocomplete => "off"}
= f.input :current_password, :input_html => {:autocomplete => "off"}, :hint => "(we need your current password to confirm password or email changes)"
2013-01-17 16:27:03 +01:00
= f.action :submit, :as => :button, :label => "Update", :button_html => {:class => "btn btn-primary"}