{% extends 'base.html' %} {% block content %}
Booking ID | Booking Date | Departure Date | Departure Location | Destination Location | Cancelled | View Booking |
---|---|---|---|---|---|---|
{{ booking.id }} | {{ booking.booking_date }} | {{ booking.departure_date }} | {{ booking.departure_location }} | {{ booking.destination_location }} | {{ 'Yes' if booking.cancelled else 'No' }} | View Booking |