{% import '@SyliusShop/Common/Macro/sectionHeaders.html.twig' as headers %}
{% set countNbProduct = app_get_parameter('nb_'~product_association.type.code) %}
{% if countNbProduct and countNbProduct != "" %}
{% set intNbProduct = app_get_int_from_string(countNbProduct) %}
{% set associatedProducts = product_association.associatedProducts|slice(0, intNbProduct) %}
{% else %}
{% set associatedProducts = product_association.associatedProducts %}
{% endif %}
<div id="sylius-product-association-{{ product_association.type.name }}" {{ sylius_test_html_attribute('product-association', product_association.type.name) }} class="">
{% include '@SyliusShop/Product/_horizontalList.html.twig' with {'products': associatedProducts, 'header': product_association.type.translation.name} %}
</div>