<%= cart.store_name %> Cart

<% if cart.items.empty? -%>

Your cart is empty; click add-to-cart to add products.

<% end -%>
<%= render(:partial => "refinery/stores/stores/cart_item", :collection => cart.items) %>
Total <%= number_to_currency(cart.total_price) %>
<%= button_to( "checkout", refinery.checkout_stores_stores_path(), :class => "checkout-cart" )%> <%= button_to( "empty cart", refinery.empty_cart_stores_stores_path(), :class => "empty-cart" ) %>