Sha256: f57efc7902d2c00915abdadf30f6d2cfcd071829b07d99f11071fa3ab2b0d1e3
Contents?: true
Size: 1.33 KB
Versions: 8
Compression:
Stored size: 1.33 KB
Contents
<tr class="<%= cycle('', 'alt') %>"> <td> <%- locals = {:item_form => item_form, :variant => variant, :line_item => line_item} %> <%= hook :cart_item_image, locals do %> <% if variant.images.length == 0 %> <%= small_image(variant.product) %> <% else %> <%= image_tag variant.images.first.attachment.url(:small) %> <% end %> <% end %> </td> <td> <%= hook :cart_item_description, locals do %> <h4><%= link_to variant.product.name, product_path(variant.product) %></h4> <%= variant_options variant %> <%= truncate(variant.product.description, :length => 100, :omission => "...") %> <% end %> </td> <td> <%= hook :cart_item_price, locals do %> <%= product_price(line_item) %> <% end %> </td> <td> <%= hook :cart_item_quantity, locals do %> <%= item_form.text_field :quantity, :size => 3, :class => "line_item_quantity" %> <% end %> </td> <td> <%= hook :cart_item_total, locals do %> <%= format_price(product_price(line_item, :format_as_currency => false) * line_item.quantity) unless line_item.quantity.nil? %> <% end %> </td> <td> <%= hook :cart_item_delete, locals do %> <%= link_to(image_tag('/images/admin/icons/delete.png'), '#', :class => 'delete', :style => 'display:none') %> <% end %> </td> </tr>
Version data entries
8 entries across 8 versions & 1 rubygems