{% extends 'property_manager_app/base_property_manager.html' %} {% load static %} {% block title %}My Property Care Profile{% endblock %} {% block content %}
Property Care Owner Account

My Property Care Profile

Manage your owner details, remote-property-care access, profile image, login credentials, and key contact information from one secure profile center.

Profile Image

Click the image to upload a new profile photo.

{{ profile.full_name }}

{{ profile.get_client_type_display }} · {{ profile.get_residency_status_display }}

{% if profile.is_identity_verified %} Identity Verified {% else %} Identity Pending {% endif %} {% if profile.is_approved %} Approved {% else %} Approval Pending {% endif %} {% if profile.can_submit_properties %} Can Submit Properties {% else %} Property Submission Limited {% endif %}
Profile Information

Owner Details

Core owner, contact, and residency information associated with your Property Care account.

Username
{{ request.user.username }}
Email
{{ profile.email }}
Full Name
{{ profile.full_name }}
Client Type
{{ profile.get_client_type_display }}
Residency Status
{{ profile.get_residency_status_display }}
Current Country
{{ profile.current_country|default:"-" }}
Current City
{{ profile.current_city|default:"-" }}
Phone Number
{{ profile.phone_number|default:"-" }}
WhatsApp
{{ profile.whatsapp_number|default:"-" }}
Emergency Contact Name
{{ profile.emergency_contact_name|default:"-" }}
Emergency Contact Phone
{{ profile.emergency_contact_phone|default:"-" }}
Property Care Access

Approval & Submission Access

Review the statuses that control your account trust, approval, and ability to add properties.

Identity Verified
{% if profile.is_identity_verified %} Yes {% else %} No {% endif %}
Approved
{% if profile.is_approved %} Yes {% else %} No {% endif %}
Can Submit Properties
{% if profile.can_submit_properties %} Yes {% else %} No {% endif %}
Owner Situation

Property Care Note

Optional context about your situation, expectations, or why remote property support is needed.

{{ profile.short_note|default:"No short note has been added yet."|linebreaksbr }}
Created At
{{ profile.created_at }}
Linked Account
{% if profile.user %} {{ profile.user.username }} {% else %} - {% endif %}
{% endblock %}