{% extends 'base.html' %} {% block content %}

Manage Bookings

{% for booking in bookings %} {% endfor %}
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
{% endblock %}