14 lines
309 B
Text
14 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 %> × <%= item.product.title %></li>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
|
||
|
<%= button_to 'Empty cart', @cart, method: :delete,
|
||
|
confirm: 'Are you sure?' %>
|