{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %}Rental Owner Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if just_signed_up %}

Welcome! Your rental owner account has been created successfully.

You are now signed in to your rental owner dashboard. Please keep your login details safe for future access.

{% if account_role or new_account_email or username or password %}
{% if account_role %}
Account Type: {{ account_role }}
{% endif %} {% if new_account_email %}
Email: {{ new_account_email }}
{% endif %} {% if username %}
Username: {{ username }}
{% endif %} {% if password %}
Temporary Password: {{ password }}
{% endif %}
Your initial username and password have been sent to your email address. For better security, please change your password after your first login.
{% endif %}
{% endif %}
Rental Owner Dashboard

Welcome, {{ owner.full_name }}

Manage your property submissions, view approval status, monitor your rental listings, and grow your visibility among international guests from one place.

{{ total_listings }}

Total Listings

{{ approved_listings }}

Approved

{{ pending_listings }}

Pending

{{ active_listings }}

Active

Owner Status
Owner Type {{ owner.get_owner_type_display }}
Approved {% if owner.is_approved %} Yes {% else %} Pending Review {% endif %}
Can Submit Listings {% if owner.can_submit_listings %} Yes {% else %} Not Yet {% endif %}
{% if owner.is_approved and owner.can_submit_listings %} Add New Listing {% else %}
Your account is awaiting approval or listing permission. Once enabled, you will be able to submit rental properties here.
{% endif %}
Profile Image
My Profile

View your rental owner profile details, contact information, and owner status.

Open
Create New Listing

Add a new rental property listing with photos, pricing, location details, and availability information.

Create
Interest Requests

View international guests who have expressed interest in your property listings.

Open
Payment Center

Pay featured owner fees, review payment records, and boost visibility for better listing placement.

Open
Connected Ensolanka Access

Expand Your Account

Use your existing Rental Owner account to activate related Ensolanka services without creating a separate login.

Property Care Access
{% if has_property_manager_profile %}

Your Property Care profile is already active. Open your Property Care dashboard to register properties, request maintenance support, and manage care plans.

Open Property Care Dashboard {% else %}

Activate Property Care access using your existing Rental Owner profile details and begin managing care and maintenance needs.

{% csrf_token %}
{% endif %}
Affiliate Access
{% if has_affiliate_profile %}

Your Affiliate profile is already active. Open your Affiliate Dashboard to access referral tools, ambassador resources, and earning opportunities.

Open Affiliate Dashboard {% else %}

Activate Ensolanka Global Ambassador access using your existing Rental Owner account details and start promoting Sri Lanka opportunities.

{% csrf_token %}
{% endif %}

My Listings

View and manage your submitted rental properties.

{% if owner.is_approved and owner.can_submit_listings %} {% endif %}
{% for listing in listings %}
{% if listing.images.first %} {{ listing.title }} {% else %}
{% endif %}
{% if listing.is_approved %} Approved {% else %} Pending {% endif %} {% if listing.is_active %} Active {% else %} Inactive {% endif %} {% if listing.visibility == 'private' %} Private {% else %} Public {% endif %} {% if listing.is_featured %} Featured {% endif %}
{{ listing.title }}

{{ listing.city }}{% if listing.area %}, {{ listing.area }}{% endif %}

Rent: ${{ listing.monthly_rent_usd }}/month

Type: {{ listing.get_property_type_display }}

{{ listing.short_description|truncatechars:110 }}

Created: {{ listing.created_at|date:"M d, Y" }}
{% empty %}
No listings submitted yet

Once your account is approved for submissions, you can start adding rental properties here and present them to international guests.

{% if owner.is_approved and owner.can_submit_listings %} Add Your First Listing {% endif %}
{% endfor %}
{% endblock %}