{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %}{{ listing.title }} | Owner Listing Preview{% endblock %} {% block content %}
{% if all_images %}
{{ listing.title }}
{% if all_images|length > 1 %}
{% for img in all_images %}
{{ img.caption|default:listing.title }}
{% endfor %}
{% endif %} {% else %}
{% endif %}
Owner Listing Preview

{{ listing.title }}

${{ listing.monthly_rent_usd }}/month

{{ listing.short_description }}

{% if listing.is_approved %} Approved {% else %} Pending Approval {% endif %} {% if listing.is_active %} Active {% else %} Inactive {% endif %} {% if listing.is_available %} Available {% else %} Unavailable {% endif %} {% if listing.visibility == 'private' %} Private {% else %} Public {% endif %} {% if listing.is_featured %} Featured {% endif %}
Listing Summary

Property Type: {{ listing.get_property_type_display }}

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

Bedrooms: {{ listing.bedrooms }}

Bathrooms: {{ listing.bathrooms }}

Max Occupants: {{ listing.max_occupants }}

Furnishing: {{ listing.get_furnishing_display }}

Security Deposit: ${{ listing.security_deposit_usd }}

{% if listing.available_from %}

Available From: {{ listing.available_from }}

{% endif %}

Created: {{ listing.created_at|date:"M d, Y" }}

{% 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 %}

Full Description

{{ listing.full_description|linebreaks }}
{% if listing.house_rules %}
House Rules
{{ listing.house_rules|linebreaks }}
{% endif %}

Owner Notes

Approval Status:
{% if listing.is_approved %} This listing is approved. {% else %} This listing is currently pending admin review. {% endif %}
Visibility:
{% if listing.visibility == 'private' %} This listing is visible only to confirmed foreigners with private access. {% else %} This listing is set as public. {% endif %}
Availability:
{% if listing.is_available %} The listing is currently marked as available. {% else %} The listing is currently marked as unavailable. {% endif %}
Editing:
Updating a listing may require review again before approval is restored.
{% endblock %}