{% extends 'expat_life/base.html' %} {% load static %} {% block title %}My Interested Properties{% endblock %} {% block content %}
My Stay

Interested Properties

Review the rental properties you are interested in and select your final property when ready.

Back to Dashboard
{% if lead.final_rental_property %}
Final Selected Property

{{ lead.final_rental_property.title }}

This property is currently saved as your final rental selection.

{% endif %}
{% for interest in interests %}
{% with listing=interest.listing %}
{% if listing.images.first %} {{ listing.title }} {% else %}
{% endif %} {{ interest.get_status_display }}
{{ listing.title }}

{{ listing.city }}{% if listing.district %}, {{ listing.district }}{% endif %}

Property Type
{{ listing.get_property_type_display }}
Monthly Rent
${{ listing.monthly_rent_usd|default:"0.00" }}
Visibility
{{ listing.get_listing_visibility_display }}
{% if interest.notes %}
Your Notes:
{{ interest.notes }}
{% endif %}
View Details {% if lead.final_rental_property and lead.final_rental_property.id == listing.id %} {% else %}
{% csrf_token %}
{% endif %}
{% endwith %}
{% empty %}

No Interested Properties Yet

You have not marked any rental properties as interested yet. Browse available rentals and save the ones you would like to review later.

Browse Rental Properties
{% endfor %}
{% endblock %}