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

Manage Bookings

{% for booking in bookings %} {% endfor %}
Booking ID Booking Date Departure Date Departure Location Destination Location Actions
{{ booking.id }} {{ booking.booking_date }} {{ booking.departure_date }} {{ booking.departure_location }} {{ booking.destination_location }}
{% endblock %}