{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %}Interested Guests{% endblock %} {% block content %}
Rental Owner Dashboard

Guests Interested in Your Properties

Here you can view the guests who have expressed interest in your rental listings.

{% if foreigner_cards %}
{% for item in foreigner_cards %}
{% if item.profile_image %} {{ item.name }} {% else %} Default Profile {% endif %}
{{ item.name }}
{% if item.country %}

{{ item.country }}

{% endif %}
{% if item.nationality %}
Nationality {{ item.nationality }}
{% endif %} {% if item.age %}
Age {{ item.age }}
{% endif %}
Interest Status {{ item.interest.get_status_display }}
Expressed On {{ item.interest.created_at|date:"M d, Y" }}
Interested Property
{% if item.listing_image %} {{ item.listing.title }} {% endif %}

{{ item.listing.title }}

{{ item.listing.get_property_type_display }} {% if item.listing.city %} • {{ item.listing.city }}{% endif %}

${{ item.listing.monthly_rent_usd }} / month

{% if item.interest.notes %}
Notes

{{ item.interest.notes|linebreaksbr }}

{% endif %}
{% endfor %}
{% else %}

No Interest Requests Yet

When guests express interest in your rental listings, they will appear here.

Back to Dashboard
{% endif %}
{% endblock %}