{% extends "base.html" %} {% block title %}Propiedades — Casa Hunter FL{% endblock %} {% block content %}

Propiedades en Oportunidad

{% if properties %}

{{ properties|length }} propiedades encontradas

{% for p in properties %}
{% if p.image_url %} {% else %}
{% endif %}
{{ p.source }} {{ p.score }}/100
${{ "{:,.0f}".format(p.price) }}

{{ p.address }}

{{ p.city }}{% if p.county %}, {{ p.county }}{% endif %}

{% if p.beds %}{{ p.beds }}{% endif %} {% if p.baths %}{{ p.baths }}{% endif %} {% if p.sqft %}{{ p.sqft }}sf{% endif %}
Ver Detalle {% if p.url %}{% endif %} {% if p.is_favorite %}{% endif %}
{% endfor %}
{% else %}
No hay propiedades

Haz clic en Buscar Ahora para encontrar oportunidades

{% endif %} {% endblock %}