Sha256: 0df1a1e2ee96503175b62ae257cf44f33ea6fc42f1495d5c176944209c0eadc5

Contents?: true

Size: 659 Bytes

Versions: 15

Compression:

Stored size: 659 Bytes

Contents

<% unless @product_properties.blank? %>
  <h3 class="product-section-title h4 mt-4">
    <%= 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

15 entries across 15 versions & 1 rubygems

Version Path
spree_frontend-4.0.9 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.8 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.7.1 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.7 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.6 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.5 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.4 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.3 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.2 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.1 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.0 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.0.rc3 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.0.rc2 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.0.rc1 app/views/spree/products/_properties.html.erb
spree_frontend-4.0.0.beta app/views/spree/products/_properties.html.erb