Sha256: 67f9e080320007a8c701b324c1ec2ec896967add7f913851a6d713629006d4cf
Contents?: true
Size: 550 Bytes
Versions: 2
Compression:
Stored size: 550 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
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
spree_frontend-3.0.0.rc1 | app/views/spree/products/_promotions.html.erb |
spree_bootstrap_frontend-1.0.1 | app/views/spree/products/_promotions.html.erb |