{% extends 'user.html.twig' %} {% block title %}Property{% endblock %} {% block body %}
{% if property.isOnly %} {% else %} {% endif %}
Titre {{ property.title }}
Offre d'annonce {{ property.offer.name ?? "" }}
Statut de l'annonce {{ property.status.name }}
Type de l'annonce {{ property.type.name }}
Lieu
Quartier: {{ property.district.name }}
Commune: {{ property.district.commune.name }}
Ville: {{ property.district.commune.city.name }}
Description {{ property.description | nl2br }}
Annonce en Ligne ?OUINON
Prix {{ property.price | format_currency(property.currency ) }}
Qui a publié ? {{ property.publisher.fullName ?? "" }}
Date de Création {{ property.createdAt ? property.createdAt|date('Y-m-d H:i:s') : '' }}
Date de Mise à jour {{ property.updatedAt ? property.updatedAt|date('Y-m-d H:i:s') : '' }}
{% if not property.partoptions.empty %}
Les Pièces
{% for partoption in property.partoptions %} {% endfor %}
Pièce Nombre Actions
{{ partoption.part.name }} {{ partoption.quantity }} {{ include('admin/property/_delete_partoption_form.html.twig') }}
{% endif%}

Les Images

{% if images is defined %} {% for image in images %} {% if image.isDefault %} {% else %} {% endif %} {% else %} {% endfor %}
Image Image à la Une Date d'ajout actions
OUINON{{ image.updatedAt ? image.updatedAt|date('Y-m-d H:i:s') : '' }} Mettre à la Une {{ include('admin/property/_delete_image_form.html.twig') }}
Aucune annonce trouvée
{% if images.totalItemCount > limit %}
{% endif %} {% else %}

Aucune image associée à ce bien

{% endif %}
{% endblock %}