{% extends 'dating_app/base_dating.html' %} {% load static %} {% block title %}Register as a Local Dating Partner{% endblock %} {% block content %}
Local Partner Registration

Register as a Local Partner

Submit your profile for review if you are looking for marriage or a serious long-term relationship with an international Guest through a respectful, reviewed, and privacy-conscious process.

Admin-reviewed profiles
Serious relationship focus
Private details protected

Submit Your Profile Details

Please provide honest and complete information. Your profile will be reviewed before it becomes visible on the platform.

{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{% for field in form %} {% if field.name == 'passport_ready' or field.name == 'willing_to_relocate' or field.name == 'willing_video_call' or field.name == 'is_public' %}
{{ field }}
{% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% elif field.name == 'agreed_to_terms' %}
{{ field }}
This field is required before submitting your profile. By checking this box, you confirm that you agree to Ensolanka’s Terms & Conditions, Privacy Policy, and profile review rules.
{% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% else %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endif %} {% endfor %}
Cancel
Important: Public display happens only after admin review and approval. Ensolanka may reject, hide, or request changes to any profile that does not match the platform’s safety, sincerity, and respectful relationship standards.
{% endblock %}