Sha256: 2609ec49114992183801fa623714790b14b48cd394a8822a68dcf964dabc7b83
Contents?: true
Size: 1.41 KB
Versions: 2
Compression:
Stored size: 1.41 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> <% if variant %> <p><%= variant_options variant %></p> <% if variant.product.description %> <p><%= truncate(variant.product.description, :length => 100, :omission => "...") %></p> <% end %> <% end %> <% 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') %> <% end %> </td> </tr>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
synergy_default_theme-1.0.2 | app/views/orders/_line_item.html.erb |
synergy_default_theme-1.0.1 | app/views/orders/_line_item.html.erb |