{% extends 'base/base.html' %} {% load static %} {% block title %}Cancel Booking - {{ booking.booking_number }} | {{ block.super }}{% endblock %} {% block content %}

Cancel Booking #{{ booking.booking_number }}

Are you sure you want to cancel this booking? This action cannot be undone.

{% if booking.equipment.image %} {{ booking.equipment.name }} {% else %}
{% endif %}
{{ booking.equipment.name }}
{{ booking.equipment.category }}

Rental Period

{{ booking.start_date|date:"M j, Y" }} - {{ booking.end_date|date:"M j, Y" }} {{ booking.total_days }} day{{ booking.total_days|pluralize }}

Total Amount

KSh {{ booking.total_amount|floatformat:2|intcomma }}

Cancellation Policy

{% if booking.start_date > now %} Cancellations made more than 48 hours before the rental start time will receive a full refund. Cancellations made within 48 hours of the rental start time will be charged a 50% cancellation fee. {% else %} This booking has already started. Cancellations at this stage may be subject to fees. {% endif %}

{% csrf_token %}
{{ form.cancellation_reason }} {% if form.cancellation_reason.errors %}
{{ form.cancellation_reason.errors.0 }}
{% endif %}
Please let us know why you're cancelling this booking. Your feedback helps us improve our service.
Keep Booking
{% endblock %} {% block extra_js %} {% endblock %}