{% extends "base.html" %} {% block title %}My Bookings{% endblock %} {% block content %}

My Bookings

{% if bookings %} {% for booking in bookings %} {% endfor %}
Package Destination Travel Date Price Status Actions
{{ booking.package_name }} {{ booking.destination_name }} {{ booking.travel_date }} RM {{ booking.price }} {{ booking.status }} {% if booking.status == 'Pending' %} Cancel {% endif %} View Package
{% else %}

You have no bookings yet. Explore Packages

{% endif %} {% endblock %}