{% extends 'expat_life/base.html' %} {% load static %} {% block title %}Public Guest Profiles{% endblock %} {% block content %}

Guest Profiles

Browse approved guest profiles. Public visitors see limited featured profiles, while approved dating partners may access more profiles based on permission level.

Reset
Available Guest Profiles
{% if total_results > 0 %}

Showing {{ page_obj.start_index }}–{{ page_obj.end_index }} of {{ total_results }} profile{{ total_results|pluralize }}

{% else %}

No guest profiles found for the selected filters.

{% endif %}
{% if page_obj.paginator.num_pages > 1 %}
Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% endif %}
{% for profile in profiles %}
{% if profile.profile_image %} {{ profile.lead.full_name|default:profile.user.username }} {% else %}
{% endif %}
{% if profile.is_featured %} Featured {% endif %} {% if profile.is_public %} Public {% endif %}
{{ profile.lead.full_name|default:profile.user.get_full_name|default:profile.user.username }}

{% if profile.lead.nationality %} {{ profile.lead.nationality }} {% endif %} {% if profile.lead.country %} {% if profile.lead.nationality %} | {% endif %} {{ profile.lead.country }} {% endif %}

    {% if profile.lead.gender %}
  • Gender: {{ profile.lead.get_gender_display }}
  • {% endif %} {% if profile.lead.monthly_budget %}
  • Budget: {{ profile.lead.get_monthly_budget_display }}
  • {% endif %} {% if profile.lead.duration_of_stay %}
  • Stay: {{ profile.lead.duration_of_stay }}
  • {% endif %} {% if profile.lead.remote_worker %}
  • Remote Worker: Yes
  • {% endif %}
{% empty %}
No guest profiles found for the selected filters.
{% endfor %}
{% if page_obj.paginator.num_pages > 1 %}
{% endif %}
{% endblock %}