{{ article.title }}
Pièces jointes
-
{% for att in article.attachments %}
{% set mime = att.mimeType ?? '' %}
{# Mappage d’icônes : utiliser 'in' pour sous-chaînes #}
{% set icon = 'bi-file-earmark' %}
{% if mime starts with 'image/' %}
{% set icon = 'bi-file-image' %}
{% elseif mime starts with 'application/pdf' %}
{% set icon = 'bi-file-earmark-pdf' %}
{% elseif mime starts with 'video/' %}
{% set icon = 'bi-file-play' %}
{% elseif mime starts with 'audio/' %}
{% set icon = 'bi-file-music' %}
{% elseif mime starts with 'application/vnd.ms-excel' or 'spreadsheet' in mime %}
{% set icon = 'bi-file-earmark-excel' %}
{% elseif 'word' in mime %}
{% set icon = 'bi-file-earmark-word' %}
{% endif %}
-
{{ att.title ?? att.originalName }}{{ (att.size/1024)|number_format(0, ',', ' ') }} Ko {# TODO : remplacer par ta route de téléchargement sécurisé quand tu l’auras #} Télécharger
{% endfor %}
{% endif %}