{% extends 'dating_app/base_dating.html' %} {% load static %} {% block title %}Interested Guests{% endblock %} {% block content %}
Dating Partner Dashboard

Guests Interested in Your Profile

Here you can view the guests who have already expressed interest in your dating profile.

Back to Dashboard
Total Interest Requests

Total guests who showed interest in your profile.

{{ total_interests }}
{% 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.monthly_budget %}
Monthly Budget {{ item.monthly_budget }}
{% 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" }}
{% if item.interest.message %}
Message

{{ item.interest.message|linebreaksbr }}

{% endif %} {% if item.foreigner and item.foreigner.pk %} {% endif %}
{% endfor %}
{% else %}

No Interest Requests Yet

When guests express interest in your dating profile, they will appear here.

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