{% extends 'expat_life/base.html' %} {% load static %} {% block title %}My Interested Service Partners{% endblock %} {% block content %}
Guest Dashboard

My Interested Service Partners

View the local service partner profiles you have marked as interested and continue your service arrangements securely.

Back to Dashboard
{% if interests %}
{% for interest in interests %}
{% if interest.partner.profile_photo %} {{ interest.partner.display_name|default:interest.partner.full_name }} {% else %} Default Profile {% endif %} {{ interest.get_status_display }}
{{ interest.partner.display_name|default:interest.partner.full_name }}
{{ interest.partner.get_service_type_display }}
{% if interest.partner.gender %}
{{ interest.partner.get_gender_display }}
{% endif %} {% if interest.partner_age %}
Age {{ interest.partner_age }}
{% endif %}
{% if interest.partner.city %}{{ interest.partner.city }}{% endif %} {% if interest.partner.district %}, {{ interest.partner.district }}{% endif %} {% if interest.partner.country %}, {{ interest.partner.country }}{% endif %}
Interested on {{ interest.created_at|date:"M d, Y" }}
View Details

Service arrangements are handled through our platform support process.

{% endfor %}
{% else %}

No Interested Service Partners Yet

You have not marked any local service partner profiles as interested yet. Browse available support profiles and save the ones you would like to review later.

Browse Service Partners
{% endif %}
{% endblock %}