{# Partial: Section Petites Annonces (Home) #}

Petites annonces

Les dernières annonces approuvées par l’association

{% for ad in latestAds %}
{# ------- Miniature ------- #} {% set thumb = asset('images/placeholders/classified_no_image.png') %} {% if ad.photos is defined and ad.photos|length > 0 %} {% set first = ad.photos|first %} {% if first %} {# 1) VichUploader: ajusta 'imageFile' si tu campo se llama distinto #} {% set vichUrl = vich_uploader_asset(first, 'imageFile') ?? null %} {% if vichUrl %} {% set thumb = vichUrl %} {% else %} {# 2) Fallback a nombre de archivo en la entidad #} {% set fileName = attribute(first, 'fileName') ?? attribute(first, 'filename') ?? attribute(first, 'name') ?? null %} {% if fileName %} {% set thumb = asset('uploads/classifieds/' ~ fileName) %} {% endif %} {% endif %} {% endif %} {% endif %} {{ ad.title }}

{{ ad.title }}

{% if ad.description is defined %}

{{ ad.description|u.truncate(120, '…', false) }}

{% endif %}
{% if ad.price is not null %} {{ ad.price|number_format(0, ',', ' ') }} € {% else %} - {% endif %} Voir
{% else %}

Aucune annonce pour le moment.

{% endfor %}
Voir toutes les annonces {% if is_granted('ROLE_USER') %} Déposer une annonce {% endif %}