24 lines
756 B
Plaintext
Executable File
24 lines
756 B
Plaintext
Executable File
=semantic_form_for [:admin, @p_fournisseur], :remote => true do |f|
|
|
|
|
.content
|
|
=f.inputs do
|
|
|
|
= f.input :code, :label => "Code :"
|
|
= f.input :name, :label => "Nom :"
|
|
|
|
= f.input :address1, :label => "Adresse 1 :"
|
|
= f.input :address2, :label => "Adresse 2 :"
|
|
= f.input :cp, :label => "CP :"
|
|
= f.input :city, :label => "Ville :"
|
|
= f.input :country, :label => "Pays :"
|
|
= f.input :email, :label => "Email :"
|
|
= f.input :tel, :label => "Tel :"
|
|
|
|
=f.input :compta_account, :label => "Compte comptable :"
|
|
|
|
|
|
|
|
|
|
=link_to "Annuler", "#", class:"btn btn-default", onclick:"close_pane_hover();return false;"
|
|
=f.submit "sauvegarder", :class => "btn btn-primary"
|
|
|