{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %}My Rental Owner Profile{% endblock %} {% block content %}
Rental Owner Account

My Rental Owner Profile

Manage your personal account details, owner status, payout readiness, profile image, username, and password from one premium profile center.

Profile Image

Click the image to upload a new profile photo.

{{ owner.full_name }}

{{ owner.get_owner_type_display }} Rental Owner {% if owner.business_name %} · {{ owner.business_name }} {% endif %}

{% if owner.is_identity_verified %} Identity Verified {% else %} Identity Pending {% endif %} {% if owner.is_approved %} Approved {% else %} Approval Pending {% endif %} {% if owner.can_submit_listings %} Can Submit Listings {% else %} Listing Access Limited {% endif %}
Profile Information

Profile Details

Core personal, contact, business, and property partner account information.

Username
{{ request.user.username }}
Email
{{ owner.email }}
Full Name
{{ owner.full_name }}
Owner Type
{{ owner.get_owner_type_display }}
Business Name
{{ owner.business_name|default:"-" }}
City
{{ owner.city|default:"-" }}
Phone Number
{{ owner.phone_number|default:"-" }}
WhatsApp
{{ owner.whatsapp_number|default:"-" }}
Address
{{ owner.address|default:"-" }}
Owner Access

Approval & Listing Access

Review the status that controls profile trust, platform approval, and rental listing creation.

Identity Verified
{% if owner.is_identity_verified %} Yes {% else %} No {% endif %}
Approved
{% if owner.is_approved %} Yes {% else %} No {% endif %}
Can Submit Listings
{% if owner.can_submit_listings %} Yes {% else %} No {% endif %}
Payment Readiness

Banking & Payout Details

Keep payout details ready so rental-owner payments can be processed smoothly.

{% if owner.banking_details %}
Account Holder
{{ owner.banking_details.account_holder_name|default:"-" }}
Bank Name
{{ owner.banking_details.bank_name|default:"-" }}
Branch Name
{{ owner.banking_details.branch_name|default:"-" }}
Bank Country
{{ owner.banking_details.bank_country|default:"-" }}
Account Number
{{ owner.banking_details.account_number|default:"-" }}
SWIFT Code
{{ owner.banking_details.swift_code|default:"-" }}
IBAN
{{ owner.banking_details.iban|default:"-" }}
Verified
{% if owner.banking_details.is_verified %} Yes {% else %} No {% endif %}
Bank Address
{{ owner.banking_details.bank_address|default:"-" }}
Payment Notes
{{ owner.banking_details.payment_notes|default:"-" }}
{% else %}

No banking details added yet.

Add your banking details so rental payments can be transferred after any applicable commission deductions.

{% endif %}
Payout Setup

Keep your banking information updated to receive rental payouts smoothly and avoid unnecessary payment delays.

{% if owner.banking_details %} Update Banking Details {% else %} Add Banking Details {% endif %}
Created At
{{ owner.created_at }}
Linked Account
{% if owner.user %} {{ owner.user.username }} {% else %} - {% endif %}
{% endblock %}