15 lines
689 B
Plaintext
15 lines
689 B
Plaintext
= form_for @table, html: {class: 'form-horizontal' } do |f|
|
|
= render 'error_messages', target: @table
|
|
.control-group class=(@table.errors[:number].any? ? 'error' : nil)
|
|
= f.label :number, class: 'control-label'
|
|
.controls
|
|
= f.text_field :number, class: 'text_field'
|
|
.control-group class=(@table.errors[:supplier_id].any? ? 'error' : nil)
|
|
= f.label :supplier_id, Supplier.model_name.human, class: 'control-label'
|
|
.controls
|
|
= f.select :supplier_id, options_for_select(@suppliers.map{|a| [a.name, a.id]}), include_blank: nil
|
|
.form-actions
|
|
= f.submit nil, class: 'btn btn-primary'
|
|
'
|
|
= link_to t("helpers.links.cancel"), tables_path, class: 'btn'
|