Sha256: f6c0628839a2b8721b4b56fd69b3a9ce387811c25a033cbf30471682a228d099

Contents?: true

Size: 698 Bytes

Versions: 5

Compression:

Stored size: 698 Bytes

Contents

#new-person-popup.modal
  = form_for Person.new, :url => people_path, :remote => true, :html => { "class" => "form-horizontal", "data-type" => :json } do |form|
    .modal-header
      .close{'data-dismiss'=>'modal'} x
      %h3 New Person
    .modal-body
      #error
      .control-group
        = form.label :first_name, "First Name"
        .control-group
          = form.text_field :first_name
      .control-group
        = form.label :last_name, "Last Name"
        .control-group
          = form.text_field :last_name
      .control-group
        = form.label :email, "Email"
        .control-group
          = form.text_field :email
    .modal-footer
      = form.submit :class => "btn"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
artfully_ose-1.1.0 app/views/shared/_new_person_popup.html.haml
artfully_ose-1.1.0.rc2 app/views/shared/_new_person_popup.html.haml
artfully_ose-1.1.0.rc1 app/views/shared/_new_person_popup.html.haml
artfully_ose-1.0.0.rc4 app/views/shared/_new_person_popup.html.haml
artfully_ose-1.0.0.rc3 app/views/shared/_new_person_popup.html.haml