{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Event Packages | Host in Sri Lanka{% endblock %} {% block content %}
Hosting Event Packages

Manage Event Packages

Create and manage event packages connected to your venues. These packages can later be shown to guests for romantic dates, proposal events, anniversaries, birthdays, honeymoon moments, private dinners, and custom celebrations.

Total Packages {{ total_count }}
Active Packages {{ active_count }}
Featured {{ featured_count }}
Public Ready {{ public_ready_count }}

Package Listings

Review your created packages and continue preparing them for admin approval, public listing, and guest booking workflows.

New Package
{% if packages %}
{% for package in packages %}
{% if package.image %} {{ package.title }} {% elif package.package_image %} {{ package.title }} {% else %}
{% endif %}
{% if package.listing_status %} {{ package.get_listing_status_display }} {% else %} Draft {% endif %} {% if package.is_featured %} Featured {% endif %}
{% if package.event_type %} {{ package.get_event_type_display }} {% else %} Event Package {% endif %}

{{ package.title }}

{% if package.venue %} {{ package.venue.venue_name }} {% if package.venue.city or package.venue.district %}
{% if package.venue.get_city_display %} {{ package.venue.get_city_display }} {% else %} {{ package.venue.city }} {% endif %} {% if package.venue.city and package.venue.district %}, {% endif %} {% if package.venue.get_district_display %} {{ package.venue.get_district_display }} {% else %} {{ package.venue.district }} {% endif %} {% endif %} {% else %} Venue not selected {% endif %}

{% if package.short_description %} {{ package.short_description|truncatechars:135 }} {% else %} Add a short package description to help guests understand what this experience includes. {% endif %}

USD {{ package.base_price_usd }} {% if package.duration_hours %} {{ package.duration_hours }} hrs {% endif %} {% if package.max_people_included %} {{ package.max_people_included }} included {% endif %} {% if package.is_active %} Active {% else %} Inactive {% endif %}
{% if package.includes_meals %} Meals {% endif %} {% if package.includes_decoration %} Decoration {% endif %} {% if package.includes_photography %} Photography {% endif %} {% if package.includes_music %} Music {% endif %} {% if package.is_customizable %} Customizable {% endif %}
View Edit {% if package.venue %} Venue {% else %} Venue {% endif %} Requests
{% endfor %}
{% else %}

No Event Packages Added Yet

Start by creating your first package for a romantic date, proposal, anniversary, birthday, private dinner, honeymoon moment, or custom celebration. Packages help guests understand what they can book and how pricing works.

Create My First Package
{% endif %}
{% endblock %}