Sha256: d9ef14f6d6ad0d8489b98e9a60b71ba26a34b49477c7b49cae7c15d5811ec62d

Contents?: true

Size: 561 Bytes

Versions: 97

Compression:

Stored size: 561 Bytes

Contents

<% promotions = @product.possible_promotions %>

<% if promotions.any? %>
  <div id="promotions">
    <h3><%= Spree.t(:promotions) %></h3>
    <% promotions.each do |promotion| %>
    <div class="well well-sm">
      <h4><%= promotion.name %></h4>
      <p><%= promotion.description %></p>
      <% if promotion.products.any? %>
        <ul>
          <% promotion.products.each do |product| %>
            <li><%= link_to product.name, product_path(product) %></li>
          <% end %>
        </ul>
      <% end %>
    </div>
    <% end %>
  </div>
<% end %>

Version data entries

97 entries across 97 versions & 2 rubygems

Version Path
spree_frontend-3.1.0.rc4 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.9 app/views/spree/products/_promotions.html.erb
spree_frontend-3.1.0.rc3 app/views/spree/products/_promotions.html.erb
spree_frontend-3.1.0.rc2 app/views/spree/products/_promotions.html.erb
spree_frontend-3.1.0.rc1 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.8 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.7 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.6.1 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.6 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.5 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.4 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.3 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.2 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.1 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.0 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.0.rc4 app/views/spree/products/_promotions.html.erb
spree_frontend-3.0.0.rc3 app/views/spree/products/_promotions.html.erb