<%= 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 %>