{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}{{ event_package.title }} | Event Package Detail{% endblock %} {% block content %}
{% if event_package.image %}
{{ event_package.title }}
{% elif event_package.package_image %}
{{ event_package.title }}
{% elif venue.cover_image %}
{{ event_package.title }}
{% else %}
{% endif %}
{% if event_package.event_type %} {{ event_package.get_event_type_display }} {% else %} Event Package {% endif %}

{{ event_package.title }}

{{ event_package.short_description }}

{% if event_package.listing_status %} {{ event_package.get_listing_status_display }} {% else %} Draft {% endif %} {% if event_package.is_active %} Active {% else %} Inactive {% endif %} {% if event_package.is_featured %} Featured {% endif %} {% if event_package.duration_hours %} {{ event_package.duration_hours }} Hours {% endif %} {% if event_package.max_people_included %} {{ event_package.max_people_included }} People Included {% endif %}

Package Description

Full details of the experience, setting, and intended celebration flow.

{{ event_package.full_description }}

Connected Venue

The venue where this package can be arranged.

Venue Category {% if venue.venue_category %} {{ venue.get_venue_category_display }} {% else %} Host Venue {% endif %}
City {% if venue.get_city_display %} {{ venue.get_city_display }} {% else %} {{ venue.city }} {% endif %}
District {% if venue.get_district_display %} {{ venue.get_district_display }} {% else %} {{ venue.district }} {% endif %}

Pricing & Guest Count

Main commercial details for this package.

Base Price USD {{ event_package.base_price_usd }}
Duration {{ event_package.duration_hours }} hours
People Included {{ event_package.max_people_included }}
Extra Person Price USD {{ event_package.extra_person_price_usd }}

Included Features

Features included or supported by this package.

{% if event_package.includes_meals %} Meals Included {% endif %} {% if event_package.includes_decoration %} Decoration Included {% endif %} {% if event_package.includes_photography %} Photography Included {% endif %} {% if event_package.includes_music %} Music Included {% endif %} {% if event_package.is_customizable %} Customizable {% endif %} {% if not event_package.includes_meals and not event_package.includes_decoration and not event_package.includes_photography and not event_package.includes_music and not event_package.is_customizable %}
No included feature options have been selected yet.
{% endif %}
{% if event_package.inclusions_summary %}

Inclusions Summary

What is included in this package.

{{ event_package.inclusions_summary }}
{% endif %} {% if event_package.exclusions_summary %}

Exclusions Summary

What is not included in this package.

{{ event_package.exclusions_summary }}
{% endif %} {% if event_package.pricing_note %}

Pricing Note

Extra pricing conditions or operational notes.

{{ event_package.pricing_note }}
{% endif %}
Base Package Price USD {{ event_package.base_price_usd }}

This is the host-entered base package price. Ensolanka commission, custom additions, extra persons, meal plans, or add-on services may be handled separately.

Package Summary

Quick status and review information.

Listing Status {% if event_package.listing_status %} {{ event_package.get_listing_status_display }} {% else %} Draft {% endif %}
Active {% if event_package.is_active %} Yes {% else %} No {% endif %}
Featured {% if event_package.is_featured %} Yes {% else %} No {% endif %}
Event Type {% if event_package.event_type %} {{ event_package.get_event_type_display }} {% else %} Not selected {% endif %}
Created {{ event_package.created_at|date:"M d, Y" }}
Last Updated {{ event_package.updated_at|date:"M d, Y" }}

Package Actions

Continue editing this package or manage connected venue details.

{% if event_package.admin_review_note %}

Admin Review Note

Internal or review feedback from Ensolanka admin team.

{{ event_package.admin_review_note }}
{% endif %}
{% endblock %}