{% sw_extends '@Storefront/storefront/component/delivery-information.html.twig' %}
{% block component_delivery_information %}
<div class="product-delivery-information">
<p class="delivery-information delivery-available">
{{ "detail.deliveryTimeAvailable"|trans({
'%name%': page.product.deliveryTime.translation('name')
})|sw_sanitize }}
</p>
</div>
<div class="cta-fachberatung">
<a href="/wie-koennen-wir-helfen/kontaktieren-sie-uns/" rel="nofollow"> Hier Fachberatung erhalten </a>
</div>
{% set locations = page.product.translated.customFields.custom_traum_default_location %}
{% if locations|length > 0 %}
<div> {{ "customFields.custom_traum_default_location"|trans }}:
{% for location in locations %}
{# Snippet must be added manualy through backend#}
{{ ("customFields.custom_traum_default_location_" ~ location)|trans }}{% if loop.index < loop.length %},{% endif %}
{% endfor %}
</div>
{% endif %}
{% endblock %}