%table.table.table-hover
  %thead
    %tr
      %th{:style => 'width:70%'} Bestellgruppe
      %th Bestellt (Menge + Toleranz)
      %th Bekommen
      %th Gesamtpreis

  - for order_article in order.order_articles.ordered.all(:include => [:article, :article_price])
    %thead
      %tr
        %th{:colspan => "4"}
          = order_article.article.name
          = "(#{order_article.article.unit} | #{order_article.price.unit_quantity} | #{number_to_currency(order_article.price.gross_price)})"
    %tbody
      - for goa in order_article.group_order_articles
        %tr{:class => cycle('even', 'odd', :name => 'groups')}
          %td{:style => "width:70%"}=h goa.group_order.ordergroup.name
          %td= "#{goa.quantity} + #{goa.tolerance}"
          %td
            %b= goa.result
          %td= number_to_currency(order_article.price.fc_price * goa.result)
    %tr
      %td(colspan="4" )
  - reset_cycle('groups')