{% set equipments = {} %} {% for vehicleSelling in sellingData.vehicleSellings %} {% set isVN = vehicleSelling.vehicleData.voVnType == 'VN' %} {% if isVN == true %} {% for item in vehicleSelling.vehicleData.equipmentsTypeIsEnabled.option_optional %} {% set equipments = equipments|merge({0:item}) %} {% endfor %} {% endif %} {% endfor %} {% if equipments|length > 0 %}
{% include 'AppBundle:Documents:v2\\Include\\Global\\title_content.html.twig' with {'title' : 'vehicle.equipment.optional.title'|trans({}, 'DocumentTrans' )} %}
{% endif %} {% for i in 0..equipments|length %} {% set cptFirstTd = i+i %} {% set cptSecondTd = i+i +1 %} {% if equipments[cptFirstTd] is defined %} {% endif %} {% if equipments[cptSecondTd] is defined %} {% endif %}
- {{ equipments[cptFirstTd] }}- {{ equipments[cptSecondTd] }}
{% endfor %}