{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}{{ venue.venue_name }} | Host Venue Detail{% endblock %} {% block content %}
{% if venue.cover_image %}
{{ venue.venue_name }}
{% else %}
{% endif %}
{% if venue.venue_category %} {{ venue.get_venue_category_display }} {% else %} Host Venue {% endif %}

{{ venue.venue_name }}

{{ venue.short_description }}

{% if venue.listing_status %} {{ venue.get_listing_status_display }} {% else %} Draft {% endif %} {% if venue.is_public %} Public {% else %} Not Public {% endif %} {% if venue.is_featured %} Featured {% endif %} {% if venue.max_guest_capacity %} Up to {{ venue.max_guest_capacity }} Guests {% endif %}

Venue Description

Main details guests and Ensolanka staff can use to understand this venue.

{{ venue.full_description }}

Location & Access

District, city, address, and map details for this venue.

District {% if venue.get_district_display %} {{ venue.get_district_display }} {% else %} {{ venue.district }} {% endif %}
City {% if venue.get_city_display %} {{ venue.get_city_display }} {% else %} {{ venue.city }} {% endif %}
Address {% if venue.address %} {{ venue.address|linebreaksbr }} {% else %} Not provided {% endif %}
Google Map {% if venue.google_map_link %} Open Map {% else %} Not provided {% endif %}

Event Suitability

Celebration types this venue can support.

{% if venue.supports_romantic_dates %} Romantic Dates {% endif %} {% if venue.supports_proposal_events %} Proposal Events {% endif %} {% if venue.supports_anniversaries %} Anniversaries {% endif %} {% if venue.supports_birthdays %} Birthdays {% endif %} {% if venue.supports_honeymoon_experiences %} Honeymoon Experiences {% endif %} {% if venue.supports_private_dinners %} Private Dinners {% endif %} {% if venue.supports_engagement_events %} Engagement Events {% endif %} {% if venue.supports_small_weddings %} Small Weddings {% endif %} {% if venue.supports_custom_celebrations %} Custom Celebrations {% endif %} {% if not venue.supports_romantic_dates and not venue.supports_proposal_events and not venue.supports_anniversaries and not venue.supports_birthdays and not venue.supports_honeymoon_experiences and not venue.supports_private_dinners and not venue.supports_engagement_events and not venue.supports_small_weddings and not venue.supports_custom_celebrations %}
No event suitability options selected yet.
{% endif %}

Facilities & Capabilities

Practical venue capabilities available for guest arrangements.

{% if venue.meal_service_available %} Meal Service {% endif %} {% if venue.alcohol_available %} Alcohol Available {% endif %} {% if venue.decoration_available %} Decoration Available {% endif %} {% if venue.photography_allowed %} Photography Allowed {% endif %} {% if venue.music_allowed %} Music Allowed {% endif %} {% if venue.indoor_available %} Indoor Area {% endif %} {% if venue.outdoor_available %} Outdoor Area {% endif %} {% if venue.private_area_available %} Private Area {% endif %} {% if venue.parking_available %} Parking {% endif %} {% if not venue.meal_service_available and not venue.alcohol_available and not venue.decoration_available and not venue.photography_allowed and not venue.music_allowed and not venue.indoor_available and not venue.outdoor_available and not venue.private_area_available and not venue.parking_available %}
No facility options selected yet.
{% endif %}

Venue Gallery

Gallery images help Ensolanka and guests understand the venue atmosphere.

{% if gallery_images %} {% else %}
No gallery images added yet.
{% endif %}
{% if venue.important_notes %}

Important Notes

Venue rules, restrictions, advance notice requirements, or practical notes.

{{ venue.important_notes }}
{% endif %}

Venue Summary

Quick status and listing readiness information.

Listing Status {% if venue.listing_status %} {{ venue.get_listing_status_display }} {% else %} Draft {% endif %}
Public Visibility {% if venue.is_public %} Public {% else %} Not Public {% endif %}
Featured {% if venue.is_featured %} Yes {% else %} No {% endif %}
Gallery Images {{ gallery_images.count }}
Created {{ venue.created_at|date:"M d, Y" }}
Last Updated {{ venue.updated_at|date:"M d, Y" }}

Venue Actions

Continue preparing this venue for listing and package creation.

Connected Services

Packages, meal plans, and add-ons connected with this venue.

Event Packages

{% if event_packages %} {{ event_packages.count }} package{{ event_packages.count|pluralize }} connected. {% else %} No packages created yet. {% endif %}

{{ event_packages.count|default:0 }}

Meal Plans

{% if meal_plans %} {{ meal_plans.count }} meal plan{{ meal_plans.count|pluralize }} connected. {% else %} No meal plans created yet. {% endif %}

{{ meal_plans.count|default:0 }}

Add-on Services

{% if add_on_services %} {{ add_on_services.count }} add-on service{{ add_on_services.count|pluralize }} connected. {% else %} No add-on services created yet. {% endif %}

{{ add_on_services.count|default:0 }}
{% endblock %}