{% extends 'base.html' %} {% block title %} Home{% endblock title %} {% block body %}
{% if getlist|length == 0: %}
{% else %}

Choose Category

{% for list in getlist %}

{% if list.bhk == None: %} {{ list.requiretype }} {% else :%} {{ list.bhk }} {% endif %} {{list.proptype}} for {{ list.listtype}}

{{ list.locality+","}} {{list.city}}

{% if list.listtype == 'Sell' and list.proptype == 'Plot' : %}

₹{{ list.price }} Price

{% endif %} {% if list.listtype == 'Sell' and list.proptype != 'Plot' : %}

₹{{ list.cost }} Price

{% endif %} {% if list.listtype == 'Rent': %}

₹{{ list.monthly_rent }} Monthly Rent

{% endif %}
  • Enquire Now
  • {% if list.plot_area: %} {{ list.plot_area+" sq.ft" }} {%endif %} {% if list.built_area: %} {{list.built_area+" sq.ft"}} {%endif %}
{% endfor%}
{% endif %}
{% endblock body %}