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