Sha256: 5063198c238320331e4e6eaeaedfa9ca349ecf68e44e1b8fb8c1f447b4e721b7

Contents?: true

Size: 489 Bytes

Versions: 31

Compression:

Stored size: 489 Bytes

Contents

<% promotions = @product.possible_promotions %>
<% if promotions.any? %>
<div id="promotions">
  <h3><%= t 'promotions' %></h3>

  <% for promotion in promotions %>
  <div>
    <h4><%= promotion.name %></h4>
    <p><%= promotion.description %></p>
    <% if promotion.products.any? %>
    <ul>
      <% for product in promotion.products %>
        <li><%= link_to product.name, product_path(product) %></li>
      <% end %>
    </ul>
    <% end %>
  </div>
  <% end %>

</div>
<% end %>


Version data entries

31 entries across 31 versions & 7 rubygems

Version Path
spree_promo-0.60.0 app/views/products/_promotions.html.erb
spree_promo-0.60.0.RC1 app/views/products/_promotions.html.erb
spree_promo-0.50.2 app/views/products/_promotions.html.erb
spree_promo-0.50.1 app/views/products/_promotions.html.erb
spree_promo-0.50.0 app/views/products/_promotions.html.erb
spree_promo-0.40.3 app/views/products/_promotions.html.erb
spree_promo-0.40.2 app/views/products/_promotions.html.erb
spree_promo-0.40.1 app/views/products/_promotions.html.erb
spree_promo-0.40.0 app/views/products/_promotions.html.erb
spree_promo-0.30.1 app/views/products/_promotions.html.erb
spree_promo-0.30.0 app/views/products/_promotions.html.erb