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

Booking Details

Summary

Departure Date: {{ booking.depart_date }}

Departure Location: {{ booking.listing.depart_location }}

Departure Time: {{ booking.listing.depart_time }}

Seat Type: {{ booking.seat_type.capitalize() }}

Total Cost: £{{ booking.amount_paid }}

Destination Location: {{ booking.listing.destination_location }}

Destination Time: {{ booking.listing.destination_time }}

Number of Seats: {{ booking.num_seats }}

Cost Per Person: £{{ booking.amount_paid / booking.num_seats }}

Cancelled: {{ 'Yes' if booking.cancelled else 'No' }}

Re-Download Booking Details

{% if booking.cancelled %} {% else %}
{% endif %}
{% endblock %}