2013-02-10 09:05:20 +01:00
|
|
|
-title t('.title')
|
|
|
|
%p!= t('.first_paragraph')
|
2012-11-10 16:44:05 +01:00
|
|
|
%table.table.table-striped{:style => "width:35em"}
|
|
|
|
- for group_order in @order.group_orders
|
|
|
|
%tr{:class => cycle('even', 'odd')}
|
2016-02-25 02:08:04 +01:00
|
|
|
%td= group_order.ordergroup_name
|
2012-11-10 16:44:05 +01:00
|
|
|
%td.numeric= number_to_currency(group_order.price)
|
|
|
|
.form-actions
|
2014-02-20 15:04:53 +01:00
|
|
|
= link_to t('.clear'), close_finance_order_path(@order), method: :patch, class: 'btn btn-primary'
|
2013-06-21 13:25:52 +02:00
|
|
|
= link_to t('.or_cancel'), new_finance_order_path(order_id: @order.id)
|