DistroPropaganda/code/rails31/depot_r/app/views/carts/_cart.html.erb

14 lines
374 B
Text
Raw Normal View History

2018-11-24 13:20:20 +01:00
<div class="cart_title">Your Cart</div>
<table>
<%= render(cart.line_items) %>
<tr class="total_line">
<td colspan="2">Total</td>
<td class="total_cell"><%= number_to_currency(cart.total_price) %></td>
</tr>
</table>
<%= button_to "Checkout", new_order_path, method: :get %>
<%= button_to 'Empty cart', cart, method: :delete,
confirm: 'Are you sure?' %>