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

{{ land_property.name }}

{% if land_property.image %} {{ land_property.name }} {% else %}

Project Image

No image available for this project

{% endif %}

Project Overview

{{ land_property.description|linebreaks }}
{% if land_property.amenities %}

Amenities

{{ land_property.amenities|linebreaks }}
{% endif %}

Project Information

Status: {{ land_property.get_project_status_display }}
Type: {{ land_property.get_property_type_display }}
Area: {{ land_property.area }}
Location: {{ land_property.location }}
Division: {{ land_property.get_division_display }}
District: {{ land_property.district }}
Area: {{ land_property.area_name }}
{% if land_property.price_per_katha %}
Price per Katha: ৳{{ land_property.price_per_katha|floatformat:0 }}
{% endif %} {% if land_property.total_plots %}
Total Plots: {{ land_property.total_plots }}
Available Plots: {{ land_property.available_plots }}
Sold Plots: {{ land_property.sold_plots }}
{% endif %}
Created: {{ land_property.created_at|date:"M d, Y" }}
{% if land_property.total_plots and land_property.available_plots %}

Project Progress

Completion {{ land_property.completion_percentage }}%
{{ land_property.sold_plots }} of {{ land_property.total_plots }} plots sold
{% endif %}
{% if related_properties %}

Related Projects

{% for related in related_properties %}
{% if related.image %} {{ related.name }} {% else %}

Project Image

{% endif %}

{{ related.name }}

Area: {{ related.area }}

Location: {{ related.location }}

View Details
{% endfor %}
{% endif %} {% endblock %}