_cart.html.erb 376 B

1234567891011121314
  1. <h2><%= t('.title') %></h2>
  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 t('.checkout'), new_order_path, method: :get %>
  10. <%= button_to t('.empty'), cart, method: :delete,
  11. data: { confirm: 'Are you sure?' } %>