Sha256: 964f5178f8fce38b95249969b9475323b83250d2bda5561b58ea0fbe7797fa43

Contents?: true

Size: 1020 Bytes

Versions: 8

Compression:

Stored size: 1020 Bytes

Contents

= form_for @user do |f|
  = f.error_messages
  = field_set_tag "User Details" do
    .splitContainer
      %dl.half
        %dt= f.label :first_name
        %dd= f.text_field :first_name, :class => 'focus text'
      %dl.half
        %dt= f.label :last_name
        %dd= f.text_field :last_name, :class => 'text'
  = field_set_tag "Login" do
    .splitContainer
      %dl.third
        %dt= f.label :email_address
        %dd= f.text_field :email_address, :class => 'text'
      %dl.third
        %dt= f.label :password
        %dd= f.password_field :password, :class => 'text'
      %dl.third
        %dt= f.label :password_confirmation, "...and again"
        %dd= f.password_field :password_confirmation, :class => 'text'


  %p.submit
    - unless @user.new_record?
      %span.right= link_to "Delete", @user, :class => 'button purple', :method => :delete, :data => {:confirm => "Are you sure you wish to remove this user?"}
    = f.submit :class => 'button green'
    = link_to "Cancel", :users, :class => 'button'

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
shoppe-1.0.2 app/views/shoppe/users/_form.html.haml
shoppe-1.0.1 app/views/shoppe/users/_form.html.haml
shoppe-1.0.0 app/views/shoppe/users/_form.html.haml
shoppe-0.0.21 app/views/shoppe/users/_form.html.haml
shoppe-0.0.20 app/views/shoppe/users/_form.html.haml
shoppe-0.0.19 app/views/shoppe/users/_form.html.haml
shoppe-0.0.18 app/views/shoppe/users/_form.html.haml
shoppe-0.0.17 app/views/shoppe/users/_form.html.haml