<%= t(:order_summary) %>

<% @checkout.order.charges.each do |charge| %> <% end %> <% @checkout.order.credits.each do |credit| %> <% end %>
<%= t('item_total') %>: <%= number_to_currency @checkout.order.item_total %>
<%= charge.description %>: <%= number_to_currency charge.amount -%>
<%= credit.description %>: (<%= number_to_currency credit.amount %>)
<%= t('order_total') %>: <%= number_to_currency @checkout.order.total %>
<% unless @prev_state.blank? %> <% form_for @checkout, :url => object_url, :html => { :id => 'checkout-summary-form'} do |summary_form| %> <%= summary_form.text_field :coupon_code, :id => 'coupon-code', :size => 14 %> <%= image_tag "spinner.gif", :plugin=>"spree", :style => "display:none", :id => 'coupon_busy_indicator' %> <% end -%> <% end -%>