{% extends 'dating_app/base_dating.html' %} {% load static %} {% block title %}My Dating Profile{% endblock %} {% block content %}
My Dating Profile

Manage Your Local Dating Partner Profile

Keep your profile attractive, accurate, and ready for Guest visibility. Update your photos, review your details, and manage the information that supports your dating partner journey.

Profile Image

Click the image to upload a new profile photo

{{ partner.display_name|default:partner.full_name }}

{{ partner.short_intro|default:"Your profile introduction helps international Guests understand who you are and what kind of relationship you hope to build." }}

Local Dating Partner {% if partner.status == 'approved' %} Approved {% elif partner.status == 'pending' %} Pending Review {% else %} {{ partner.get_status_display }} {% endif %} {% if partner.is_public %} Public Profile {% else %} Not Public Yet {% endif %} {% if partner.is_featured %} Featured {% endif %}

Manage Additional Photos

Upload up to 5 extra photos. Newly uploaded photos will be reviewed before approval.

Upload New Photo
{% csrf_token %}
{{ photo_form.image }} {% for error in photo_form.image.errors %}
{{ error }}
{% endfor %}
{{ photo_form.caption }} {% for error in photo_form.caption.errors %}
{{ error }}
{% endfor %}
{{ photo_form.is_public }}
Maximum 5 additional photos allowed. Photos remain subject to review and approval.
{% for photo in additional_photos %}
{{ photo.caption|default:'Additional Photo' }}
{% if photo.caption %} {{ photo.caption }} {% endif %} {% if photo.status == 'approved' %} {{ photo.get_status_display }} {% elif photo.status == 'pending' %} {{ photo.get_status_display }} {% else %} {{ photo.get_status_display }} {% endif %} {% if photo.is_public %}Public{% else %}Private{% endif %}
{% csrf_token %}
{% empty %}
No additional photos uploaded yet.
{% endfor %}

Profile Details

Review the information currently attached to your dating partner profile.

Username
{{ request.user.username }}
Email
{{ partner.email }}
Full Name
{{ partner.full_name }}
Display Name
{{ partner.display_name|default:"-" }}
Gender
{{ partner.get_gender_display }}
Age
{{ partner.age }}
City
{{ partner.city }}
District
{{ partner.district|default:"-" }}
Country
{{ partner.country }}
Profession
{{ partner.profession|default:"-" }}
Relationship Goal
{{ partner.get_relationship_goal_display }}
Marital Status
{{ partner.marital_status|default:"-" }}
Religion
{{ partner.religion|default:"-" }}
Languages
{{ partner.languages_spoken }}
Education
{{ partner.education|default:"-" }}
Height
{{ partner.height|default:"-" }}
Short Intro
{{ partner.short_intro }}
About Me
{{ partner.about_me }}
Expectations
{{ partner.expectations|default:"-" }}

Status & Preferences

Your current visibility, profile status, and relationship-related preferences.

Status
{% if partner.status == 'approved' %} {{ partner.get_status_display }} {% elif partner.status == 'pending' %} {{ partner.get_status_display }} {% else %} {{ partner.get_status_display }} {% endif %}
Public Profile {% if partner.is_public %} Yes {% else %} No {% endif %}
Featured {% if partner.is_featured %} Yes {% else %} No {% endif %}
Passport Ready {% if partner.passport_ready %} Yes {% else %} No {% endif %}
Willing to Relocate {% if partner.willing_to_relocate %} Yes {% else %} No {% endif %}
Video Call {% if partner.willing_video_call %} Yes {% else %} No {% endif %}

System Info

Internal profile identifiers and account creation details.

Profile Code
{{ partner.profile_code }}
Created At
{{ partner.created_at }}
{% endblock %}