{% extends 'base.html' %} {% block title %} MY Listing {% endblock title %} {% block body %}

Hi {{ session['user_name'] | capitalize }}

{% if plisting|length == 0 %}
{% else %} {% for list in plisting %}
{{ list.date}} {% if list.form_status == 'success': %} {% else :%} {% endif %}

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

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

{% 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 %}
  • 4
  • 2
  • {% if list.plot_area == None: %} {{ list.plot_area }} {% else :%} {{ list.plot_area}} {{list.unit}} {% endif %}
{% endfor %} {% endif %}
{% endblock body %}