%= content_tag :div, "#{@cart.shipping_method.description.translate}".html_safe, class: 'shipping_method_descr text-right' if @cart.shipping_method_id.present? %>
<%= t('.qty', default: 'Quantity') %> | <%= t('.item', default: 'Item') %> | <%= t('.price', default: 'Price') %> | <%= t('.tax', default: 'Tax') %> | <%= t('.subtotal', default: 'Sub Total') %> |
---|---|---|---|---|
<%= item.qty %> | <%= link_to(item.the_title, item.the_url) %> | <%= item.the_price %> | <%= item.the_tax %> | <%= item.the_sub_total %> |
<%= t('.total_excl', default: 'Total (excluding Tax)') %> | <%= @cart.the_sub_total %> | |||
<%= t('.tax', default: 'Tax') %> | <%= @cart.the_tax_total %> | |||
<%= t('.discount', default: 'Discount') %> | <%= @cart.the_total_discounts %> | |||
<%= t('.total_shipping', default: 'Total shipping') %> | <%= @cart.the_total_shipping %> | |||
<%= t('.total_price', default: 'Total Price') %> | <%= @cart.the_price %> |