{% extends 'hosting_app/base_hosting.html' %} {% load static %} {% block title %}Delete Gallery Image | Host in Sri Lanka{% endblock %} {% block content %}
Confirm Delete

Delete Gallery Image?

You are about to remove an image from the gallery of {{ venue.venue_name }}. This action cannot be undone.

Review Image Before Deleting

Please confirm that this is the image you want to remove from the venue gallery.

{% if gallery_image.image %} {{ gallery_image.caption|default:venue.venue_name }} {% endif %}

{{ venue.venue_name }}

{% if gallery_image.caption %} {{ gallery_image.caption }} {% else %} This gallery image does not have a caption. {% endif %}

Display Order {{ gallery_image.display_order }}
Uploaded Date {{ gallery_image.created_at|date:"M d, Y" }}
Venue Category {% if venue.venue_category %} {{ venue.get_venue_category_display }} {% else %} Host Venue {% endif %}
Location {% if venue.city or venue.district %} {{ venue.city }}{% if venue.city and venue.district %}, {% endif %}{{ venue.district }} {% else %} Not provided {% endif %}
Warning: Once deleted, this image will be permanently removed from this venue gallery. You will need to upload it again if you want to use it later.
Cancel & Go Back
{% csrf_token %}
{% endblock %}