{% extends 'base.html.twig' %} {% block title %}{{ article.title }}{% endblock %} {% block body %}

{{ article.title }}

{% if article.publishedAt %} Publié le {{ article.publishedAt|date('d/m/Y \\à H:i') }} {% endif %} {% if article.author is defined and article.author %} {{ article.author.firstName ?? '' }} {{ article.author.lastName ?? '' }} {% endif %} {% if article.isMembersOnly %} Réservé aux membres {% endif %}
{% if article.cover %}
{{ article.title }}
{% endif %}
{{ article.content|raw }}
{# --- PIÈCES JOINTES --- #} {% if article.attachments is defined and article.attachments|length > 0 %}

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 %} {# Navigation Précédent/Suivant optionnelle #} {% if prev is defined or next is defined %}
{% endif %}
{% endblock %}