<%= t("Shopping Cart")%>
<% form_for(:order, :url => object_url, :html => { :method => :put}) do |f| %>
<%= render :partial => 'form', :locals => {:f => f} %>
<%= "#{t("Subtotal")}: #{order_price(@order)}" %>
<%= submit_tag t('Update') %>
<%= link_to t("Checkout"), checkout_order_url(@order) %>
<%=link_to t("Continue Shopping"), products_path %>
<% unless @order.line_items.empty? %>
<%= link_to t("Empty Cart"), object_url, :method => :delete %>
<% end %>
<% end %>