{% sw_extends '@Storefront/storefront/page/product-detail/buy-widget-form.html.twig' %}
{% block page_product_detail_buy_container %}
{% sw_include '@Storefront/storefront/component/buy-widget/buy-widget-form-customized-products.html.twig' %}
{{ parent() }}
{% endblock %}
{% block page_product_detail_buy_form_action %}
{% apply spaceless %}
{% if customizedProductsTemplate and customizedProductsTemplate.active and customizedProductsTemplate.options|length %}
{{ path('frontend.checkout.customized-products.add') }}
{% else %}
{{ parent() }}
{% endif %}
{% endapply %}
{% endblock %}
{% block page_product_detail_buy_form_inner_csrf %}
{% if customizedProductsTemplate and customizedProductsTemplate.active and customizedProductsTemplate.options|length %}
{{ sw_csrf('frontend.checkout.customized-products.add') }}
{% else %}
{{ parent() }}
{% endif %}
{% endblock %}