{% extends 'base.html' %} {% block title %} Search {% endblock title %} {% block body %}
{% if getlist|length > 0: %}

{{getlist|length}} Results Found

{% endif %}
{% if getlist|length == 0 %}
{% else %} {% for list in getlist %}

{% if list.listtype == 'Sell' and list.listtype == 'Rent' : %} {{ list.requiretype }} {{list.proptype}} {% else :%} {%if list.bhk :%} {{ list.bhk }} {%endif%} {{ list.requiretype }} {{list.proptype}} {% endif %} for {{ list.listtype}}

{% if list.district: %} {{ list.district+","}} {% endif %} {% if list.city is not none: %} {{ list.city+","}} {% endif %} {% if list.locality is not none: %} {{ list.locality}} {% endif %}

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

₹ {% if list.amount_text == '': %} {{ list.price }} Price {% else :%} {{ list.amount_text}} {% endif %}

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

₹ {% if list.amount_text == '': %} {{ list.cost }} Price {% else :%} {{ list.amount_text}} {% endif %}

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

₹ {% if list.amount_text == '': %} {{ list.monthly_rent }} Monthly Rent {% else :%} {{ list.monthly_rent}} {% endif %}

{% endif %}
  • 4
  • 2
  • {% if list.plot_area: %} {{ list.plot_area}} {% if list.unit!=None: %} {{list.unit}} {% endif %} {%endif %} {% if list.built_area: %} {% if list.unit!=None: %} {{list.unit}} {% endif %} {%endif %}
  • Enquire Now
{% endfor %} {% endif %}
{% endblock body %}