Sha256: f14ec823052c8b0a9996f9c34d9debbfb66e632774b9dbaf863d0944ff24a032

Contents?: true

Size: 1.93 KB

Versions: 8

Compression:

Stored size: 1.93 KB

Contents

= form_tag update_account_user_url(@user), :method => 'put', :class => "MainForm", :multipart => true do
  -box :class => "alt first_alt" do 
    %h3=:you_are_editing_your_account.l
    = link_to :edit_your_user_profile.l, edit_user_path(@user)

  = error_messages_for :user

  -box :class => "yui-b" do

    %h3=:username.l
    = text_field :user, :login, :size => "28"

    %h3=:e_mail_address.l
    = text_field :user, :email, :size => "28"

    %h3=:password.l
    = password_field :user, :password, :size => "28"

    %label=:confirm_password.l
    = password_field :user, :password_confirmation, :size => "28"

  #yui-main
    .yui-b
    
      -box :class => 'alt first_alt' do
        = render :partial => "omniauth_connect"
    
      -box do
        %h3=:e_mail_notification.l

        %fieldset
          %label 
            = check_box :user, :notify_friend_requests        
            =:notify_of_friend_requests.l :site => configatron.community_name
          
          %label
            = check_box :user, :notify_comments         
            = :notify_of_comments.l :site => configatron.community_name
          
          %label
            = check_box :user, :notify_community_news
            =:notify_email_updates.l :site => configatron.community_name
          

        %h3=:profile_privacy.l

        %fieldset
          %label
            = check_box :user, :profile_public
            =:make_my_profile_public.l
            %br
            %em
              =:when_checked_your_profile_will_be_visible_to_anyone.l
            %br
            %em
              =:when_unchecked_your_profile_will_only_be_visible_to_people_who_are_logged_in_to.l
              = "#{configatron.community_name}."
        %p= submit_tag :save_changes.l  

        %p
          =link_to :deactivate_link.l, deactivate_user_path(@user), :method => :put, :confirm => :deactivate_confirmation.l
          %br
          %label
            %em= :deactivate_tip.l            

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
community_engine-2.3.2 app/views/users/edit_account.html.haml
community_engine-2.3.1 app/views/users/edit_account.html.haml
community_engine-2.3.0 app/views/users/edit_account.html.haml
community_engine-2.1.0 app/views/users/edit_account.html.haml
community_engine-2.0.0 app/views/users/edit_account.html.haml
community_engine-2.0.0.beta3 app/views/users/edit_account.html.haml
community_engine-2.0.0.beta2 app/views/users/edit_account.html.haml
community_engine-2.0.0.beta1 app/views/users/edit_account.html.haml