{# templates/classified_ad/index.html.twig #} {% extends 'base.html.twig' %} {% set navbar_is_transparent = false %} {% block title %}{{ ad.title }} — Petites annonces{% endblock %} {% block body %}
{# ========================= Columna de fotos ========================= #}
{% if ad.photos|length > 0 %} {% else %}
Aucune photo
{% endif %}
{# ========================= Columna info ========================= #}
{% if ad.status %} Disponible {% endif %}

{{ ad.title }}

    {% if ad.condition %}
  • État : {{ ad.condition }}
  • {% endif %} {% if ad.location %}
  • Localisation : {{ ad.location }}
  • {% endif %} {% if ad.publishedAt %}
  • Publiée : {{ ad.publishedAt|date('d/m/Y') }}
  • {% endif %}
{% if ad.price is not null %}{{ ad.price|number_format(0, ',', ' ') }} €{% else %}-{% endif %}
{% if ad.description %}

Description

{{ ad.description|nl2br }}

{% endif %} Contacter le vendeur
{% endblock %}