@include 'header.html'

My Profile

@{user.first_name} @{user.last_name}

@{user.email}

@{user.gender}

Update Profile
Account Actions
My Bookings
@if bookings.len > 0
@for flight in flights @end
From To Departure Price Status
@{flight.from} @{flight.to} @{flight.departure} $@{flight.price} @if flight.bookings[0].status == 'confirmed' Confirmed @else if flight.bookings[0].status == 'cancelled' Cancelled @else Pending @end
@else

No bookings found

@end
@include 'footer.html'