{% extends 'property_manager_app/base_property_manager.html' %} {% load static %} {% block title %}My Properties | Home in Sri Lanka{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
My Properties

Your Registered Property Care Portfolio

View every property you have added under Home in Sri Lanka. From this portfolio, you can open a property, check its registration details, and move toward images, service selection, estimation, and future maintenance planning.

{{ total_properties }}
Total Properties

All properties registered under your Property Care profile.

{{ approved_properties }}
Approved

Properties currently approved for further operational handling.

{{ pending_properties }}
Pending Review

Properties still waiting for review or next approval-stage processing.

{{ active_properties }}
Active

Property records that are currently active in your dashboard.

Property Records

Browse Your Added Properties

Each record can later connect to image uploads, service selections, calculator estimates, reports, and work orders.

Add Property
{% if properties %}
{% for property in properties %}
{% with first_image=property.images.first %} {% if first_image %} {{ property.property_name }} {% else %}
{% endif %} {% endwith %} {% if property.is_approved %} Approved {% elif property.is_submitted_for_review %} Submitted for Review {% else %} Draft — Not Submitted {% endif %}

{{ property.property_name }}

{{ property.get_property_category_display }}
{% if property.city or property.district %}
{% if property.city %} {{ property.city }} {% endif %} {% if property.city and property.district %}, {% endif %} {% if property.district %} {{ property.district }} {% endif %}
{% endif %}
{{ property.get_occupancy_status_display }}
Condition: {{ property.get_current_condition_display }}
{% if property.land_size %}
Land: {{ property.land_size }} {{ property.get_land_size_unit_display }}
{% endif %}
{% endfor %}
{% else %}

No properties registered yet

Add your first property to begin the Home in Sri Lanka care journey. The information you submit will later help with image uploads, service selection, monthly estimate calculations, and final maintenance plans.

Add Your First Property
{% endif %}
{% endblock %}