{% extends 'base.html.twig' %} {% block title %}Résultats de la recherche{% endblock %} {% block body %}

Résultats de la recherche

{% if properties is empty %}

Aucun résultat trouvé.

{% else %}
{% for property in properties %}
{% if property.images|length > 0 %} {{ property.title }} {% else %} No image available {% endif %}

{{ property.title }} • {{ property.housingType.name }} • {{ property.category.name }} {% if property.subType is not empty %} • {{ property.subType.name }} {% endif %}

{% if property.category.name matches '/location/i' and property.subType is not empty %}

{{ property.rent }} €/mois

{% else %}

{{ property.price|number_format }} €

{% endif %}

{{ property.address.city }}

{{ property.harea }} m²

{{ property.yearBuilt|date('Y') }}


{% endfor %}
{% endif %}
{% endblock %}