{% set documentsObject = app_product_documents(product) %}
{% set documents = documentsObject.documents %}
{% set docLang1 = documentsObject.docLang1 %}
{% set docLang2 = documentsObject.docLang2 %}
<div class="tabs-listing style2 mt-0 mt-md-5">
<ul class="product-tabs style2 list-unstyled d-flex-wrap justify-content-center m-0 d-none d-md-flex">
<li rel="description" class="active"><a class="tablink">{{ 'product_detail.content.product_tabs_description_translations' |trans }}</a></li>
{% if documents[docLang1] | length > 0 or documents[docLang2] | length > 0 %}
{% for documentTypes, doc in documents[docLang1] %}
{% set doc = null %}
{% if documents[docLang1][documentTypes] | length > 0 %}
{% set doc = documents[docLang1][documentTypes] | first %}
{% else %}
{% if documents[docLang2][documentTypes] | length > 0 %}
{% set doc = documents[docLang2][documentTypes] | first %}
{% endif %}
{% endif %}
{% if doc is not null %}
{% set url = "" %}
{% set title = "" %}
{% if app_helper_is_object(doc) %}
{% set asset = doc.getElement() %}
{% set url = asset.getFrontendPath() %}
{% set title = doc.getDoctype() %}
{% else %}
{% set url = doc %}
{% set title = documentTypes %}
{% endif %}
{% set rel = title | replace({' ': '','á':'a','é':'e','í':'i','ó':'o','ú':'u'}) %}
{% if title is not empty %}
<li rel="{{ rel }}"><a class="tablink" href="{{ url }}" target="_blank" rel="noreferrer noopener" >{{ ("lbl_" ~ title) | trans }}</a></li>
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
</ul>
<div class="tab-container">
<h3 class="tabs-ac-style d-md-none active" rel="description">{{ 'product_detail.content.title_product_description_translations' |trans }}</h3>
<div id="description" class="tab-content">
<div class="product-description">
<div class="row">
<div class="col-12">
<h4 class="pt-2 text-uppercase">{{ 'product_detail.content.title_product_description_translations' | trans }}</h4>
{% set description = longDescription is not empty ? longDescription : shortDescription %}
{% if description matches '/<[^>]+>/' %}
<div class="fs-6">
{% for paragraph in description | split('</p>') %}
{% if paragraph | trim %}
{{ paragraph | trim | raw }}</p>
{% endif %}
{% endfor %}
</div>
{% else %}
<p class="fs-6">{{ description | nl2br | raw }}</p>
{% endif %}
</div>
</div>
</div>
</div>
{% if documents[docLang1] | length > 0 or documents[docLang2] | length > 0 %}
{% for documentTypes, doc in documents[docLang1] %}
{% set doc = null %}
{% if documents[docLang1][documentTypes] | length > 0 %}
{% set doc = documents[docLang1][documentTypes] | first %}
{% else %}
{% if documents[docLang2][documentTypes] | length > 0 %}
{% set doc = documents[docLang2][documentTypes] | first %}
{% endif %}
{% endif %}
{% if doc is not null %}
{% set url = "" %}
{% set title = "" %}
{% if app_helper_is_object(doc) %}
{% set asset = doc.getElement() %}
{% set url = asset.getFrontendPath() %}
{% set title = doc.getDoctype() %}
{% else %}
{% set url = doc %}
{% set title = documentTypes %}
{% endif %}
{% set rel = title | replace({' ': '','á':'a','é':'e','í':'i','ó':'o','ú':'u'}) %}
{% if title is not empty %}
<h3 class="tabs-ac-style d-md-none" rel="{{ rel }}">{{ ("lbl_" ~ title)| trans }}</h3>
<div id="{{ rel }}" class="tab-content d-md-none">
<div class="product-description">
<div class="row">
<div class="col-12 col-sm-12 col-md-8 col-lg-8 mb-4 mb-md-0">
<h4 class="pt-2 text-uppercase">{{ ("lbl_" ~ title) | trans }}</h4>
<a href="{{ url }}" target="_blank" rel="noreferrer noopener" class="btn rounded-0 product-form__cart-submit mb-0"><span>{{ 'product_detail.content.manual_link_translations' |trans }}</span></a>
</div>
</div>
</div>
</div>
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>