{% extends "base.html" %} {% block title %}My Bookings - VacationWeb{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ bookings|length }}
Total Bookings
{{ bookings|selectattr('status', 'equalto', 'confirmed')|list|length }}
Upcoming Trips
{{ bookings|selectattr('status', 'equalto', 'completed')|list|length }}
Completed
RM {% set total_spent = namespace(value=0) %} {% for booking in bookings %} {% if booking.status != 'cancelled' %} {% set total_spent.value = total_spent.value + booking.price %} {% endif %} {% endfor %} {{ total_spent.value|int }}
Total Spent
Filter Bookings
{% if bookings %}
{% for booking in bookings %}
#{{ booking.booking_id }}

{{ booking.description|truncate(50) }}

{{ booking.state_name }} {{ booking.status|title }}
Travel Date {% if booking.travel_date %} {{ booking.travel_date }} {% else %} Not set {% endif %}
Booked On {% if booking.booking_date %} {{ booking.booking_date }} {% else %} N/A {% endif %}
Destination {{ booking.destination_name }}
Booking ID #{{ booking.booking_id }}
{% endfor %}
{% else %}

No Bookings Yet

You haven't booked any vacation packages yet. Start planning your Malaysian adventure!

Explore Packages
{% endif %} {% set upcoming_bookings = bookings|selectattr('status', 'equalto', 'confirmed')|list %} {% if upcoming_bookings %}

Upcoming Trips Timeline

{% for booking in upcoming_bookings %}
{{ booking.description|truncate(40) }}
{{ booking.state_name }}
{% if booking.travel_date %}
{{ booking.travel_date }}
{% else %}
Date not set
{% endif %} {{ booking.destination_name }}
{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}