Sha256: 35b36b98fbeaeb935d9cfcfe56e7b69a85c463eeb23af058c9664676523c52c0
Contents?: true
Size: 592 Bytes
Versions: 44
Compression:
Stored size: 592 Bytes
Contents
<% unless @product_properties.empty? %> <h3 class="product-section-title"><%= Spree.t('properties')%></h3> <table id="product-properties" class="table table-striped" data-hook> <tbody> <% @product_properties.each do |product_property| %> <% css_class = cycle('even', 'odd', name: "properties") %> <tr class="<%= css_class %>"> <td><strong><%= product_property.property.presentation %></strong></td> <td><%= product_property.value %></td> </tr> <% end %> <% reset_cycle('properties') %> </tbody> </table> <% end %>
Version data entries
44 entries across 44 versions & 1 rubygems