Sha256: e680ed878d66fa889e35c86777097946c3cdb973aeeabd8ad89d5bce1ceee89d

Contents?: true

Size: 629 Bytes

Versions: 1

Compression:

Stored size: 629 Bytes

Contents

<% promotions = @product.possible_promotions %>

<% if promotions.any? %>
  <section class="product-promotions">
    <h2><%= t('spree.promotions') %></h2>

    <% promotions.each do |promotion| %>
      <article>
        <header>
          <h3><%= promotion.name %></h3>
        </header>

        <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 %>
      </article>
    <% end %>
  <section>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
solidus_starter_frontend-0.1.0 app/views/spree/components/products/_product_promotions.html.erb