intra_app/app/views/admin/i_websites/_form.html.haml
2019-07-22 18:19:04 +02:00

18 lines
687 B
Plaintext
Executable File

=semantic_form_for [:admin, @i_website], :remote => true do |f|
.content
=f.inputs do
= f.input :admin_id, :label => "Chef projet :", :collection => Admin.all, :as => :select, :include_blank => true, :member_label => :show_name
= f.input :p_customer_id, :label => "Clients :", :collection => PCustomer.all, :as => :select, :include_blank => false, :member_label => :show_name
= f.input :name, :label => "Nom :"
= f.input :url, :label => "Url :"
= f.input :prov_url, :label => "Url provisoire :"
=# f.input :status, :label => "Nom :"
.actions=f.submit "sauvegarder", :class => "btn btn-primary"