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

Manage Meal Plans

Create and manage meal plans connected to your venues. These can be offered with event packages or selected separately for private dinners, proposal dinners, anniversary meals, birthdays, honeymoon moments, and custom celebrations.

Total Meal Plans {{ total_count }}
Active {{ active_count }}
Featured {{ featured_count }}
Public Ready {{ public_ready_count }}

Meal Plan Listings

Review meal plans and continue preparing them for admin approval, public listing, and future guest booking workflows.

New Meal Plan
{% if meal_plans %}
{% for meal in meal_plans %}
{% if meal.meal_image %} {{ meal.title }} {% else %}
{% endif %}
{% if meal.listing_status %} {{ meal.get_listing_status_display }} {% else %} Draft {% endif %} {% if meal.is_featured %} Featured {% endif %}
Meal Plan

{{ meal.title }}

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

{% if meal.description %} {{ meal.description|truncatechars:140 }} {% else %} Add a meal plan description to help guests understand the food, menu style, and arrangement. {% endif %}

USD {{ meal.price_per_person_usd }} / person {% if meal.minimum_people %} Min {{ meal.minimum_people }} {% endif %} {% if meal.is_active %} Active {% else %} Inactive {% endif %}
View Edit {% if meal.venue %} Venue {% else %} Venue {% endif %} Requests
{% endfor %}
{% else %}

No Meal Plans Added Yet

Start by creating your first meal plan for dinners, proposal meals, birthday meals, anniversary dinners, honeymoon experiences, or custom celebration food options. Meal plans help guests understand food pricing separately or together with packages.

Add My First Meal Plan
{% endif %}
{% endblock %}