{% extends "base.html" %} {% block title %}Browse Properties - NexHome{% endblock %} {% block content %}

Browse Properties

{% if properties %}
Showing {{ properties|length }} propert{{ "y" if properties|length == 1 else "ies" }}
{% from "components/property_card.html" import property_card %} {% for prop in properties %} {{ property_card(prop) }} {% endfor %}
{% if total_pages > 1 %}
{% if page > 1 %} « Previous {% endif %} {% for p in range(1, total_pages + 1) %} {% if p == page %} {{ p }} {% else %} {{ p }} {% endif %} {% endfor %} {% if page < total_pages %} Next » {% endif %}
{% endif %} {% else %}

No properties found

Try adjusting your filters or clear all filters.

{% endif %}
{% endblock %}