Sha256: 4bfefb789f59b7f17a7d736305ac13e8aca56cc68a2b6830dfcef268b9aea2fd

Contents?: true

Size: 1.19 KB

Versions: 11

Compression:

Stored size: 1.19 KB

Contents

= form_for @user do |f|
  = f.error_messages
  = field_set_tag t('shoppe.users.user_details') do
    .splitContainer
      %dl.half
        %dt= f.label :first_name, t('shoppe.users.first_name')
        %dd= f.text_field :first_name, :class => 'focus text'
      %dl.half
        %dt= f.label :last_name, t('shoppe.users.last_name')
        %dd= f.text_field :last_name, :class => 'text'
  = field_set_tag t("shoppe.users.login") do
    .splitContainer
      %dl.third
        %dt= f.label :email_address, t('shoppe.users.email')
        %dd= f.text_field :email_address, :class => 'text'
      %dl.third
        %dt= f.label :password, t('shoppe.users.password')
        %dd= f.password_field :password, :class => 'text'
      %dl.third
        %dt= f.label :password_confirmation, t('shoppe.users.password_confirmation')
        %dd= f.password_field :password_confirmation, :class => 'text'

  %p.submit
    - unless @user.new_record?
      %span.right= link_to t('shoppe.delete'), @user, :class => 'button purple', :method => :delete, :data => {:confirm => t('shoppe.users.delete_confirmation')}
    = f.submit  t('shoppe.submit'), :class => 'button green'
    = link_to t('shoppe.cancel'), :users, :class => 'button'

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
shoppe-1.1.2 app/views/shoppe/users/_form.html.haml
shoppe-1.1.1 app/views/shoppe/users/_form.html.haml
shoppe-1.1.0 app/views/shoppe/users/_form.html.haml
shoppe-1.0.9 app/views/shoppe/users/_form.html.haml
shoppe-1.0.8 app/views/shoppe/users/_form.html.haml
kylekthompson-shoppe-1.0.7 app/views/shoppe/users/_form.html.haml
shoppe-1.0.7 app/views/shoppe/users/_form.html.haml
shoppe-1.0.6 app/views/shoppe/users/_form.html.haml
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/shoppe-1.0.5/app/views/shoppe/users/_form.html.haml
shoppe-1.0.5 app/views/shoppe/users/_form.html.haml
shoppe-1.0.3 app/views/shoppe/users/_form.html.haml