2009-01-29 01:57:51 +01:00
|
|
|
- title "Bestellungen der #{@ordergroup.name}"
|
2009-01-06 11:49:19 +01:00
|
|
|
%p
|
2009-01-29 01:57:51 +01:00
|
|
|
Siehe hier alle
|
2011-06-19 15:30:33 +02:00
|
|
|
= link_to "laufenden Bestellungen.", ordering_path
|
2009-01-29 01:57:51 +01:00
|
|
|
|
2009-01-06 11:49:19 +01:00
|
|
|
.single_column{:style => "width:50em"}
|
|
|
|
.box_title
|
2009-01-29 01:57:51 +01:00
|
|
|
%h2 beendet/nicht abgerechnet
|
2009-01-06 11:49:19 +01:00
|
|
|
.column_content
|
2009-04-20 14:11:11 +02:00
|
|
|
= render :partial => "orders", :locals => {:orders => Order.finished_not_closed, :pagination => false}
|
2009-01-06 11:49:19 +01:00
|
|
|
|
|
|
|
.single_column{:style => "width:50em"}
|
|
|
|
.box_title
|
2009-01-29 01:57:51 +01:00
|
|
|
%h2 abgerechnet
|
2009-01-06 11:49:19 +01:00
|
|
|
.column_content
|
2009-01-29 01:57:51 +01:00
|
|
|
#closed_orders
|
2009-04-20 14:11:11 +02:00
|
|
|
= render :partial => "orders", :locals => {:orders => @closed_orders, :pagination => true}
|