{% if product and product.extensions and product.extensions.dvdwPromotions
and product.extensions.dvdwPromotions.elements %}
{% if product.extensions.dvdwParticipations and product.extensions.dvdwParticipations.elements | length > 0 %}
{% set participation = product.extensions.dvdwParticipations.elements | first %}
{% set promotion = product.extensions.dvdwPromotions.elements[participation.dvdwPromotionId] %}
{% endif %}
{% if promotion and context.extensions.currentDvdwEvent.phase === 'phase-promo-show' or context.extensions.currentDvdwEvent.phase === 'phase-promo-use' %}
<div class="promo-info-block">
{% sw_include '@Storefront/storefront/page/product-detail/webshop-promotions.html.twig' with {
product: product,
promotion: product.extensions.dvdwPromotions.elements | first
} %}
</div>
{% endif %}
{% endif %}