Sha256: d9ef14f6d6ad0d8489b98e9a60b71ba26a34b49477c7b49cae7c15d5811ec62d
Contents?: true
Size: 561 Bytes
Versions: 96
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
96 entries across 96 versions & 1 rubygems