25개 이상의 토픽을 선택하실 수 없습니다. 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>