{% extends 'base.html' %} {% load static %} {% block title %}Land Properties | Matrichaya Properties Ltd.{% endblock %} {% block content %}

Explore Land Projects

Our Land Projects

Filter Projects

{% for status_code, status_name in project_statuses %} {% endfor %}
{% for type_code, type_name in property_types %} {% endfor %}
{% if page_obj %}
{% for land_property in page_obj %}
{% if land_property.image %} {{ land_property.name }} {% else %}

Project Image

{% endif %}
{{ land_property.get_project_status_display }}
{{ land_property.get_property_type_display }}

{{ land_property.name }}

Area: {{ land_property.area }}

Location: {{ land_property.location }}

{% if land_property.price_per_katha %}

Price: ৳{{ land_property.price_per_katha|floatformat:0 }} per katha

{% endif %} {% if land_property.total_plots %}

Plots: {{ land_property.available_plots }}/{{ land_property.total_plots }} available

{% endif %}
{% if land_property.description %}

{{ land_property.description|truncatewords:20 }}

{% endif %}
{% endfor %}
{% if paginator and page_obj.has_other_pages %}

Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} projects

{% elif view_mode == 'all' %}

Showing all {{ page_obj|length }} projects

View All Projects Paginated View
{% endif %} {% if paginator and page_obj.has_other_pages %}
{% endif %} {% else %}

No land projects found

Try adjusting your filters or check back later for new projects.

{% endif %}
{% endblock %}