{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %} {% if show_full_details %} {{ listing.title }} | Rental Owner Preview {% else %} Property Preview | Rental Partner Portal {% endif %} {% endblock %} {% block content %}
Rental Partner Portal {% if show_full_details %}

{{ listing.title }}

Owner-side preview of an approved rental listing.

{% else %}

{{ listing.get_property_type_display|default:"Rental Property" }} Preview

Limited public preview. Sign up as a rental owner to view more listing information, pricing, and property presentation details.

{% endif %}
{% if rental_owner_profile %} My Rental Dashboard {% else %} Sign Up as Rental Owner {% endif %}
{% if is_public_limited_preview %}
Limited public preview: Pricing, full description, house rules, deposit information, availability details, and complete listing presentation are available only for signed-up rental owners.
{% endif %}
{% if listing.images.first %} {% if show_full_details %}{{ listing.title }}{% else %}Rental property preview{% endif %} {% else %}
{% endif %}
{% if show_full_details and all_images %}
Property Images
{% for image in all_images %}
{{ image.caption|default:listing.title }} {% if image.caption %}

{{ image.caption }}

{% endif %}
{% endfor %}
{% endif %}

Property Summary

{% if show_full_details %}

{{ listing.short_description }}

{% else %}

This is a limited public preview of a property listed in our rental network. Signed-up rental owners can view more details to understand how approved listings are presented.

{% endif %}
Location
{{ listing.city }}{% if listing.area %}, {{ listing.area }}{% endif %}
Property Type
{{ listing.get_property_type_display|default:"Rental Property" }}
Furnishing
{{ listing.get_furnishing_display|default:"Not specified" }}
Bedrooms
{{ listing.bedrooms }} bedroom{{ listing.bedrooms|pluralize }}
{% if show_full_details %}
Bathrooms
{{ listing.bathrooms }} bathroom{{ listing.bathrooms|pluralize }}
Maximum Occupants
{{ listing.max_occupants }} occupant{{ listing.max_occupants|pluralize }}
{% endif %}

Available Features

{% if listing.has_wifi %} Wi-Fi {% endif %} {% if listing.has_ac %} A/C {% endif %} {% if listing.has_kitchen %} Kitchen {% endif %} {% if listing.has_parking %} Parking {% endif %} {% if listing.near_beach %} Near Beach {% endif %} {% if listing.suitable_for_remote_work %} Remote Work Friendly {% endif %} {% if not listing.has_wifi and not listing.has_ac and not listing.has_kitchen and not listing.has_parking and not listing.near_beach and not listing.suitable_for_remote_work %} No public features added yet. {% endif %}
{% if show_full_details %}

Full Description

{{ listing.full_description|linebreaks }}

{% if listing.house_rules %}

House Rules

{{ listing.house_rules|linebreaks }}

{% endif %} {% else %}

More Details Are Hidden

This public page does not show full description, pricing, house rules, deposit details, or private listing information. These details are available only for signed-up rental owners.

Sign Up as Rental Owner
{% endif %}

Listing Preview

{% if show_pricing %}
${{ listing.monthly_rent_usd }}/month
Security Deposit
${{ listing.security_deposit_usd }}
{% else %}
Price hidden.
Sign up as a rental owner to view pricing and listing presentation details.
{% endif %}
  • Approved public listing
  • {% if listing.is_featured %}
  • Featured listing example
  • {% endif %}
  • {{ listing.get_property_type_display|default:"Rental Property" }}
  • {{ listing.city }}{% if listing.area %}, {{ listing.area }}{% endif %}
  • {% if show_full_details and listing.available_from %}
  • Available from {{ listing.available_from }}
  • {% endif %}
{% if rental_owner_profile %} Manage My Properties {% else %} Sign Up to View More {% endif %} Back to Listing Preview
For Property Owners

This preview helps rental owners understand how properties may be presented inside the Ensolanka rental partner network.

  • Preview approved listing style
  • Understand guest-friendly property features
  • Register your own property
  • Work with a guided rental process
{% endblock %}