Sha256: b99e1180a904f3e690915e026d279935bcba8f989ae77492becca7e5f7f18c4c
Contents?: true
Size: 698 Bytes
Versions: 5
Compression:
Stored size: 698 Bytes
Contents
<div id='cart'> <div class="cart-title"> <h3>Your Cart</h3> <% if cart.items.empty? -%> <p><i>Your cart is empty; click add-to-cart to add products.</i></p> <% end -%> </div> <table> <%= render(:partial => "cart_item", :collection => cart.items) %> <tr class="total-line"> <td colspan="2">Total</td> <td class="total-cell"><%= number_to_currency(cart.total_price) %></td> </tr> <tr> <td> <%= button_to( "checkout", refinery.checkout_stores_stores_path(), :class => "checkout-cart" )%></td> <td> <%= button_to( "empty cart", refinery.empty_cart_stores_stores_path(), :class => "empty-cart" ) %></td> </tr> </table> </div>
Version data entries
5 entries across 5 versions & 1 rubygems