{% extends 'base.html.twig' %} {% set navbar_is_transparent = false %} {% block title %}Petites annonces{% endblock %} {% block body %}

Toutes les petites annonces

Recherchez par mots-clés, prix, état et localisation.

{% if is_granted('ROLE_USER') %}
Déposer une annonce
{% endif %} {# ======================= Filtres ======================= #} {# Résumé de résultats #}
{% if total > 0 %} {{ total }} résultat{{ total > 1 ? 's' : '' }} {% else %} Aucun résultat. {% endif %}
{# ======================= Grid des annonces ======================= #}
{% for ad in ads %}
{# ------- Miniature sûre (VichUploader + fallback) ------- #} {% 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 %} {# Ajusta 'imageFile' al nombre real del campo uploadable en tu entidad Photo #} {% set vichUrl = vich_uploader_asset(first, 'imageFile') ?? null %} {% if vichUrl %} {% set thumb = vichUrl %} {% else %} {# Fallback a propiedades comunes si no usas Vich en Photo #} {% 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.location %}
  • {{ ad.location }}
  • {% endif %} {% if ad.publishedAt %}
  • {{ ad.publishedAt|date('d/m/Y') }}
  • {% endif %}
{% if ad.description %} {% set excerpt = ad.description|striptags %}

{{ excerpt|length > 120 ? excerpt|slice(0, 120) ~ '…' : excerpt }}

{% endif %}
{% if ad.price is not null %} {{ ad.price|number_format(0, ',', ' ') }} € {% else %} - {% endif %} Voir
{% else %}
Aucun résultat ne correspond à vos filtres. Essayez d’élargir la recherche.
{% endfor %}
{# ======================= Pagination ======================= #} {% if pages > 1 %} {% set currentQuery = app.request.query.all %} {% endif %}
{% endblock %}