Sha256: b00e38ae71f9f7dcd70609bf72426f7542e81c4ebccf82daa528dd79787c41b5

Contents?: true

Size: 577 Bytes

Versions: 2

Compression:

Stored size: 577 Bytes

Contents

<%= render "shared/error_messages", :target => @order %>
<table id="cart-detail" data-hook>
  <thead>
    <tr data-hook="cart_items_headers">
      <th colspan="2"><%= t("item") %></th>
      <th><%= t("price") %></th>
      <th><%= t("qty") %></th>
      <th><%= t("total") %></th>
      <th></th>
    </tr>
  </thead>
  <tbody id="line_items" data-hook>
    <%= order_form.fields_for :line_items do |item_form| %>
      <%= render 'line_item', :variant => item_form.object.variant, :line_item => item_form.object, :item_form => item_form %>
    <% end %>
  </tbody>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/orders/_form.html.erb
spree_core-0.70.RC1 app/views/orders/_form.html.erb