Sha256: 6a0fe220ec07ba6178e809828bdd157658a1db3bfe19ce841b55b5a1521128fa

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

.option-panel-content
  .address-designation
    = form.label :designation, I18n.t('address.designation').capitalize
    = form.text_field :designation
  .civility-select
    = form.label :civility, I18n.t(:civility, :count => 1).capitalize
    = form.select :civility, I18n.t('civility.select'), {:prompt => I18n.t('please_select')}
  .firstname-input
    = form.label :firstname , I18n.t('firstname').capitalize
    = form.text_field :firstname
  .lastname-input
    = form.label :lastname , I18n.t('lastname').capitalize
    = form.text_field :lastname
  .street-input
    = form.label :address , I18n.t('address', :count => 1).capitalize
    = form.text_field :address
  .street-input
    = form.label :address_2 , I18n.t('address', :count => 1).capitalize
    = form.text_field :address_2
  .zip-code-input
    = form.label :zip_code , I18n.t('zip_code').capitalize
    = form.text_field :zip_code
  .town-input
    = form.label :city , I18n.t('city').capitalize
    = form.text_field :city
  .country-select
    = form.label :country_id , I18n.t('country').capitalize
    = form.collection_select :country_id, countries, :id, :name, {:prompt => I18n.t('please_select')}
  .clear

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
forgeos_commerce-1.9.1.rc1 app/views/admin/orders/_address_form.html.haml
forgeos_commerce-1.9.0 app/views/admin/orders/_address_form.html.haml