Sha256: dfb5be160ec0f46276a46d8594616cf7725e6fd335fda0707d3f9f4b8f721560

Contents?: true

Size: 1.06 KB

Versions: 46

Compression:

Stored size: 1.06 KB

Contents

<% promotions = @product.possible_promotions %>

<% if promotions.any? %>
  <div id="promotions">
    <h3 class="pt-4 font-weight-bold text-uppercase product-details-subtitle"><%= Spree.t(:promotions) %></h3>
    <% promotions.each do |promotion| %>
      <div class="row">
        <div class="col-12 col-md-7 col-lg-6 mb-3">
          <div class="card">
            <div class="card-body">
              <h4><%= promotion.name %></h4>
              <p><%= promotion.description %></p>
              <% if promotion.products.any? %>
                <span><%= Spree.t('pdp.products_included_in_promotion') %>:</span>
              <% end %>
            </div>
            <% if promotion.products.any? %>
              <div class="list-group list-group-flush">
                <% promotion.products.each do |product| %>
                  <%= link_to product.name, spree.product_path(product), class: 'list-group-item list-group-item-action' %>
                <% end %>
              </div>
            <% end %>
          </div>
        </div>
      </div>
    <% end %>
  </div>
<% end %>

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
spree_frontend-4.1.15 app/views/spree/products/_promotions.html.erb
spree_frontend-4.2.7 app/views/spree/products/_promotions.html.erb
spree_frontend-4.3.3 app/views/spree/products/_promotions.html.erb
spree_frontend-4.7.0 app/views/spree/products/_promotions.html.erb
spree_frontend-4.6.0 app/views/spree/products/_promotions.html.erb
spree_frontend-4.5.0 app/views/spree/products/_promotions.html.erb
spree_frontend-4.2.6 app/views/spree/products/_promotions.html.erb
spree_frontend-4.3.2 app/views/spree/products/_promotions.html.erb
spree_frontend-4.4.0 app/views/spree/products/_promotions.html.erb
spree_frontend-4.3.1 app/views/spree/products/_promotions.html.erb
spree_frontend-4.3.0 app/views/spree/products/_promotions.html.erb
spree_frontend-4.3.0.rc3 app/views/spree/products/_promotions.html.erb
spree_frontend-4.3.0.rc2 app/views/spree/products/_promotions.html.erb
spree_frontend-4.3.0.rc1 app/views/spree/products/_promotions.html.erb
spree_frontend-4.2.5 app/views/spree/products/_promotions.html.erb
spree_frontend-4.1.14 app/views/spree/products/_promotions.html.erb
spree_frontend-4.2.4 app/views/spree/products/_promotions.html.erb
spree_frontend-4.2.3.1 app/views/spree/products/_promotions.html.erb
spree_frontend-4.1.13.1 app/views/spree/products/_promotions.html.erb
spree_frontend-4.2.3 app/views/spree/products/_promotions.html.erb