foodsoft/app/views/order_articles/_new.html.haml
wvengen 507651f5ba Move small close button to helper.
Workaround for show order deface override nuking attributes of the close button.
2015-04-10 18:58:51 +02:00

9 lines
400 B
Text

= simple_form_for [@order, @order_article], remote: true do |form|
.modal-header
= close_button :modal
%h3= t '.title'
.modal-body
= form.association :article, collection: @order.supplier_articles, label_method: lambda {|a| article_label_with_unit(a)}
.modal-footer
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
= form.submit class: 'btn btn-primary'