_cart.html.erb 374 B

12345678910111213
  1. <div class="cart_title">Your Cart</div>
  2. <table>
  3. <%= render(cart.line_items) %>
  4. <tr class="total_line">
  5. <td colspan="2">Total</td>
  6. <td class="total_cell"><%= number_to_currency(cart.total_price) %></td>
  7. </tr>
  8. </table>
  9. <%= button_to "Checkout", new_order_path, method: :get %>
  10. <%= button_to 'Empty cart', cart, method: :delete,
  11. confirm: 'Are you sure?' %>