foodsoft/app/views/articles/_form.html.haml

25 lines
747 B
Plaintext
Raw Normal View History

= simple_form_for [@supplier, @article], :validate => true, :remote => true do |f|
2012-10-19 01:12:47 +02:00
= f.hidden_field :shared_updated_on
= f.hidden_field :supplier_id
.modal-header
= close_button :modal
2013-12-06 12:34:14 +01:00
%h3= @article.new_record? ? t('.title_new') : t('.title_edit')
2012-10-19 01:12:47 +02:00
.modal-body
= f.input :availability
2012-10-19 01:12:47 +02:00
= f.input :name
= render partial: 'shared/article_fields_units', locals: {f: f}
2012-10-19 01:12:47 +02:00
= f.input :note
= f.association :article_category
/ TODO labels
= render partial: 'shared/article_fields_price', locals: {f: f}
= f.input :origin
= f.input :manufacturer
2012-10-19 01:12:47 +02:00
= f.input :order_number
.modal-footer
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
2012-10-19 01:12:47 +02:00
= f.submit class: 'btn btn-primary'