{% if product is defined and product.files is defined and product.files is not empty %}
<ul class="m-0 p-0 bloc-files list-unstyled pt-3">
{% for file in product.files %}
{% if file.path is not empty %}
<li class="mb-2"><a href="/{{ file.path }}" target="_blank" class="btn-link bg-pink {% if file.code != "certificate" %} bg-grey-dark {% endif %} px-2 minw-verybig text-center font-14 text-transform-none py-1 "><span class="icon-pdf">{{'app.product.download'|trans}} {{ file.name }} </span></a></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}