You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
261 B

  1. <% if line_item == @current_item %>
  2. <tr id="current_item">
  3. <% else %>
  4. <tr>
  5. <% end %>
  6. <td><%= line_item.quantity %> &times;</td>
  7. <td><%= line_item.product.title %></td>
  8. <td class="item_price"><%= number_to_currency(line_item.total_price) %></td>
  9. </tr>