{% extends 'expat_life/base.html' %} {% load static %} {% block title %}{{ profile.lead.full_name|default:profile.user.get_full_name|default:profile.user.username }} | Guest Profile{% endblock %} {% block content %}
{% if profile.profile_image %}
{{ profile.lead.full_name|default:profile.user.username }}
{% else %}
{% endif %}
Guest Profile

{{ profile.lead.full_name|default:profile.user.get_full_name|default:profile.user.username }}

{% if profile.lead.nationality %} {{ profile.lead.nationality }} {% else %} International Guest {% endif %}

{% if profile.lead.message %} {{ profile.lead.message|truncatechars:180 }} {% else %} Approved guest profile on the platform. {% endif %}

Profile Summary

Nationality: {{ profile.lead.nationality|default:"Not specified" }}

Current Country: {{ profile.lead.country|default:"Not specified" }}

Gender: {% if profile.lead.gender %}{{ profile.lead.get_gender_display }}{% else %}Not specified{% endif %}

Monthly Budget: {% if profile.lead.monthly_budget %}{{ profile.lead.get_monthly_budget_display }}{% else %}Not specified{% endif %}

Expected Arrival: {{ profile.lead.expected_arrival_date|default:"Not specified" }}

Duration of Stay: {{ profile.lead.duration_of_stay|default:"Not specified" }}

Remote Worker: {% if profile.lead.remote_worker %}Yes{% else %}No{% endif %}

Interested Package: {% if profile.lead.interested_package %}{{ profile.lead.interested_package.name }}{% else %}Not specified{% endif %}

{% if existing_interest %}
Interest Already Submitted

You have already expressed interest in this guest profile. Our team can continue the review and coordination process.

Status: {{ existing_interest.get_status_display }}

{% if existing_interest.message %}

Your Message: {{ existing_interest.message }}

{% endif %}
{% else %} {% if can_notify_interest %}
{% csrf_token %}
By expressing interest, you notify our team that you want to move forward with this guest profile through the proper review and coordination process.
{% else %}
Permission required.
Your dating partner profile must have the required arrangement access before you can submit interest requests.
{% endif %} {% endif %}

About / Notes

{% if profile.lead.message %} {{ profile.lead.message|linebreaks }} {% else %} No additional notes provided. {% endif %}
{% if profile.lead.whatsapp_number %}
Communication Note
WhatsApp contact and direct personal details are not publicly exposed through this page. Communication is handled through the platform workflow.
{% endif %}

Important Note

Direct guest contact details are not displayed here. All communication and next-step coordination are handled through the platform for privacy and safety.

Profile Status:
{% if profile.status == 'approved' %} Approved {% else %} {{ profile.get_status_display }} {% endif %}
Profile Access:
{% if profile.is_public %} Public profile {% else %} Private profile {% endif %}
Contact Detail Access:
{% if can_view_contact_details %} Mutual interest confirmed — contact details available
Email: {{ profile.lead.email|default:"Not provided" }}
WhatsApp: {{ profile.lead.whatsapp_number|default:"Not provided" }}
{% else %} Additional contact details are locked until both sides show interest and your dating partner account is confirmed. {% endif %}
Process:
Review the guest profile, use the interest request flow if enabled, and continue through the platform’s coordinated next steps.
{% endblock %}