{% extends 'rental_app/base_rental.html' %} {% load static %} {% block title %}{{ page_title }}{% endblock %} {% block content %}
Rental Owner Area

{{ page_title }}

Fill in the property details carefully. Submitted listings can be reviewed before becoming visible to foreigners.

{% if is_edit and listing %}
{% if listing.is_approved %} Status: Approved listing. {% else %} Status: Pending review. Your latest changes remain visible to you, but public users will only see the listing after approval. {% endif %}
{% endif %}
{% csrf_token %} {% if form.errors or image_form.errors %}
Please correct the errors below and try again.
{% endif %}
{{ form.title }} {{ form.title.errors }}
{{ form.property_type }} {{ form.property_type.errors }}
{{ form.visibility }} {{ form.visibility.errors }}
{{ form.city }} {{ form.city.errors }}
{{ form.area }} {{ form.area.errors }}
{{ form.available_from }} {{ form.available_from.errors }}
{{ form.address }} {{ form.address.errors }}
{{ form.monthly_rent_usd }} {{ form.monthly_rent_usd.errors }}
{{ form.security_deposit_usd }} {{ form.security_deposit_usd.errors }}
{{ form.furnishing }} {{ form.furnishing.errors }}
{{ form.bedrooms }} {{ form.bedrooms.errors }}
{{ form.bathrooms }} {{ form.bathrooms.errors }}
{{ form.max_occupants }} {{ form.max_occupants.errors }}
{{ form.short_description }} {{ form.short_description.errors }}
{{ form.full_description }} {{ form.full_description.errors }}
{{ form.house_rules }} {{ form.house_rules.errors }}
{{ form.has_wifi }}
{{ form.has_ac }}
{{ form.has_kitchen }}
{{ form.has_parking }}
{{ form.near_beach }}
{{ form.suitable_for_remote_work }}
{{ form.is_available }}
{{ image_form.images }} {{ image_form.images.errors }}
You can select multiple images. New images will be added to the existing gallery.
Back to Dashboard
{% if is_edit and listing and listing.images.all %}
{% for img in listing.images.all %}
{{ listing.title }} {% if img.caption %}
{{ img.caption }}
{% endif %}
{% csrf_token %}
{% endfor %}
You can remove individual images and upload new ones. Any image change will send the listing for review again.
{% endif %}
{% endblock %}