{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}{{ meal_plan.title }} | Meal Plan Detail{% endblock %} {% block content %}
{% if meal_plan.meal_image %}
{{ meal_plan.title }}
{% elif venue.cover_image %}
{{ meal_plan.title }}
{% else %}
{% endif %}
Meal Plan

{{ meal_plan.title }}

{{ meal_plan.description|truncatechars:220 }}

{% if meal_plan.listing_status %} {{ meal_plan.get_listing_status_display }} {% else %} Draft {% endif %} {% if meal_plan.is_active %} Active {% else %} Inactive {% endif %} {% if meal_plan.is_featured %} Featured {% endif %} {% if meal_plan.minimum_people %} Min {{ meal_plan.minimum_people }} People {% endif %} USD {{ meal_plan.price_per_person_usd }} / Person

Meal Plan Description

Food arrangement details, menu style, dining setup, and guest-facing explanation.

{{ meal_plan.description }}

Connected Venue

The venue where this meal plan can be offered.

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 & Minimum People

Main pricing details for this meal plan.

Price Per Person USD {{ meal_plan.price_per_person_usd }}
Minimum People {{ meal_plan.minimum_people }}
Estimated Minimum Total USD {{ minimum_total_usd|floatformat:2 }} {{ meal_plan.price_per_person_usd|floatformat:2 }} × {{ meal_plan.minimum_people }} people
Commission Note Ensolanka 10% coordination commission applies
The final payable amount may change depending on confirmed guest count, selected event package, add-on services, custom requests, taxes/charges if any, and final Ensolanka-host arrangement confirmation.
Meal Plan Price USD {{ meal_plan.price_per_person_usd }}

Price per person. Minimum {{ meal_plan.minimum_people }} people required unless Ensolanka and the host approve a special arrangement.

Meal Plan Summary

Quick status and review information.

Listing Status {% if meal_plan.listing_status %} {{ meal_plan.get_listing_status_display }} {% else %} Draft {% endif %}
Active {% if meal_plan.is_active %} Yes {% else %} No {% endif %}
Featured {% if meal_plan.is_featured %} Yes {% else %} No {% endif %}
Minimum People {{ meal_plan.minimum_people }}
Created {{ meal_plan.created_at|date:"M d, Y" }}
Last Updated {{ meal_plan.updated_at|date:"M d, Y" }}

Meal Plan Actions

Continue editing this meal plan or manage the connected venue.

{% if meal_plan.admin_review_note %}

Admin Review Note

Review feedback from Ensolanka admin team.

{{ meal_plan.admin_review_note }}
{% endif %}
{% endblock %}