{% if upcoming_bookings %}
{% for booking in upcoming_bookings %}
{% include 'bookings/partials/booking_card.html' with booking=booking %}
{% endfor %}
{% else %}
{% if past_bookings %}
{% for booking in past_bookings %}
{% include 'bookings/partials/booking_card.html' with booking=booking %}
{% endfor %}
{% if past_bookings.has_other_pages %}
{% endif %}
{% else %}
No Past Bookings
You haven't completed any rentals yet.
{% endif %}
{% if cancelled_bookings %}
{% for booking in cancelled_bookings %}
{% include 'bookings/partials/booking_card.html' with booking=booking %}
{% endfor %}
{% if cancelled_bookings.has_other_pages %}
{% endif %}
{% else %}