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

Manage My Venues

Add, review, and manage the venues you want to present through Host in Sri Lanka. These venues can later be connected with event packages, meal plans, and add-on services for guest celebrations.

Total Venues {{ venues.count }}
Public Listings {{ public_count }}
Featured {{ featured_count }}
Gallery Ready {{ gallery_ready_count }}

Venue Listings

Review your created venues and continue preparing them for approval, public listing, gallery images, and event package creation.

New Venue
{% if venues %}
{% for venue in venues %}
{% if venue.cover_image %} {{ venue.venue_name }} {% else %}
{% endif %}
{% if venue.listing_status %} {{ venue.get_listing_status_display }} {% else %} Draft {% endif %} {% if venue.is_featured %} Featured {% endif %}
{% if venue.venue_category %} {{ venue.get_venue_category_display }} {% else %} Venue {% endif %}

{{ venue.venue_name }}

{% if venue.city or venue.district %} {{ venue.city }}{% if venue.city and venue.district %}, {% endif %}{{ venue.district }} {% else %} Location not added {% endif %}

{% if venue.short_description %} {{ venue.short_description|truncatechars:130 }} {% else %} Add a short venue description to help guests understand the experience you can host. {% endif %}

{% if venue.max_guest_capacity %} Up to {{ venue.max_guest_capacity }} {% endif %} {% if venue.is_public %} Public {% else %} Not Public {% endif %} {% if venue.meal_service_available %} Meals {% endif %} {% if venue.parking_available %} Parking {% endif %} {{ venue.gallery_images.count }} Images
{% endfor %}
{% else %}

No Venues Added Yet

Start by adding your first restaurant, hotel, villa, rooftop, garden, beach venue, resort, or event space. Once your venue is ready, you can add gallery images and later create event packages, meal plans, and add-on services.

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