Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

15 wiersze
360 B

  1. <h2>Your Cart</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 'Checkout', new_order_path, method: :get %>
  10. <%= button_to 'Empty Cart', cart, method: :delete, data: { confirm: 'Are you sure?'} %>