Files
2025-01-21 23:44:54 +08:00

30 lines
1.1 KiB
HTML

{% extends 'base.html' %}
{% block title %}View Listing{% endblock %}
{% block content %}
<div class="container mt-4">
<h1 class="text-center">{{ listing.title }}</h1>
{% if listing.images|length > 0 %}
<img src="{{ listing.images[0].url }}" class="img-fluid mb-4">
{% endif %}
<p><strong>Description:</strong> {{ listing.description }}</p>
<p><strong>Price:</strong> ${{ listing.price }}</p>
<p><strong>Location:</strong> {{ listing.location }}</p>
<p><strong>Property Type:</strong> {{ property_type_display }}</p>
<p><strong>Max Guests:</strong> {{ listing.guests }}</p>
<p><strong>Rooms:</strong> {{ listing.rooms }}</p>
<p><strong>Bathrooms:</strong> {{ listing.bathrooms }}</p>
<p><strong>Beds:</strong> {{ listing.beds }}</p>
{% if amenities %}
<h4>Additional Amenities:</h4>
<ul>
{% for amenity in amenities %}
<li>{{ amenity.amenity }}</li>
{% endfor %}
</ul>
{% endif %}
<a href="/booking/{{ listing.id }}" class="btn btn-primary mt-3">Book This Listing</a>
</div>
{% endblock %}