DistroPropaganda/code/rails31/depot_h/app/views/carts/show.html.erb
2018-11-24 13:20:20 +01:00

13 lines
309 B
Text

<% if notice %>
<p id="notice"><%= notice %></p>
<% end %>
<h2>Your Pragmatic Cart</h2>
<ul>
<% @cart.line_items.each do |item| %>
<li><%= item.quantity %> &times; <%= item.product.title %></li>
<% end %>
</ul>
<%= button_to 'Empty cart', @cart, method: :delete,
confirm: 'Are you sure?' %>