show.html.erb 369 B

1234567891011121314151617
  1. <% if notice %>
  2. <p id="notice"><%= notice %></p>
  3. <% end %>
  4. <h2>Your Cart</h2>
  5. <table>
  6. <%= render(@cart.line_items) %>
  7. <tr class="total_line">
  8. <td colspan="2">Total</td>
  9. <td class="total_cell"><%= number_to_currency(@cart.total_price) %></td>
  10. </tr>
  11. </table>
  12. <%= button_to 'Empty cart', @cart, method: :delete,
  13. data: { confirm: 'Are you sure?' } %>