show.html.erb 577 B

123456789101112131415161718192021
  1. <% if notice %>
  2. <p id="notice"><%= notice %></p>
  3. <% end %>
  4. <div class="cart_title">Your Cart</div>
  5. <table>
  6. <% @cart.line_items.each do |item| %>
  7. <tr>
  8. <td><%= item.quantity %>&times;</td>
  9. <td><%= item.product.title %></td>
  10. <td class="item_price"><%= number_to_currency(item.total_price) %></td>
  11. </tr>
  12. <% end %>
  13. <tr class="total_line">
  14. <td colspan="2">Total</td>
  15. <td class="total_cell"><%= number_to_currency(@cart.total_price) %></td>
  16. </tr>
  17. </table>
  18. <%= button_to 'Empty cart', @cart, method: :delete,
  19. confirm: 'Are you sure?' %>