{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Add-on Services | Host in Sri Lanka{% endblock %} {% block content %}
Hosting Add-on Services

Manage Add-on Services

Create optional add-on services connected to your venues. These can support event packages with decoration, cakes, flowers, photography, music, transport, spa experiences, surprise arrangements, or other custom celebration services.

Total Add-ons {{ total_count }}
Active {{ active_count }}
Featured {{ featured_count }}
Public Ready {{ public_ready_count }}

Add-on Service Listings

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

New Add-on
{% if add_on_services %}
{% for service in add_on_services %}
{% if service.add_on_image %} {{ service.title }} {% else %}
{% endif %}
{% if service.listing_status %} {{ service.get_listing_status_display }} {% else %} Draft {% endif %} {% if service.is_featured %} Featured {% endif %}
Add-on Service

{{ service.title }}

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

{% if service.description %} {{ service.description|truncatechars:140 }} {% else %} Add a service description to help guests understand this optional arrangement. {% endif %}

USD {{ service.price_usd }} {% if service.pricing_type %} {{ service.get_pricing_type_display }} {% endif %} {% if service.is_active %} Active {% else %} Inactive {% endif %}
View Edit {% if service.venue %} Venue {% else %} Venue {% endif %} Requests
{% endfor %}
{% else %}

No Add-on Services Added Yet

Start by adding optional services such as decoration, photography, birthday cake, flowers, music, romantic table setup, surprise arrangement, spa package, transport, or custom event support.

Add My First Service
{% endif %}
{% endblock %}