%table.ordered-articles.table.table-striped
  %thead
    %tr
      %th= sort_link_helper "Artikel", "name"
      %th= sort_link_helper "Nr.", "order_number"
      %th Menge
      %th GebGr * Einheit
      %th Netto
      %th Brutto
      %th MwSt
      %th Pfand
      %th{:colspan => "2"}
        = link_to "Artikel hinzufügen", new_finance_order_order_article_path(@order), remote: true,
          class: 'btn btn-small'
  %tbody#result_table
    - for order_article in @articles
      = render :partial => "order_article_result", :locals => {:order_article => order_article}