{% extends 'base.html.twig' %} {% block title %}Immobilien - {{ parent() }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {% if immobilien|length > 0 %}
{% for immobilie in immobilien %}
{{ immobilie.typ.label }}
{{ immobilie.adresse }}
{{ immobilie.preis|number_format(2, ',', '.') }} €
  • 📐 Fläche: {{ immobilie.flaeche }} m²
  • 🛏️ Zimmer: {{ immobilie.zimmer }}
  • 💰 Preis/m²: {{ immobilie.preisProQm|number_format(2, ',', '.') }} €
  • {% if immobilie.baujahr %}
  • 📅 Baujahr: {{ immobilie.baujahr }}
  • {% endif %} {% if immobilie.garage %}
  • 🚗 Mit Garage
  • {% endif %}
Details ansehen
{% endfor %}
{% else %}

Keine Immobilien verfügbar

Aktuell sind keine Immobilien in unserem System verfügbar.

{% endif %} {% endblock %}