{% extends 'base/base.html' %} {% load static %} {% block title %}My Bookings - PRACA Equipment Rental{% endblock %} {% block content %}

My Bookings

View and manage your equipment rental history

Rent Equipment
{% if upcoming_bookings %} {% for booking in upcoming_bookings %} {% include 'bookings/partials/booking_card.html' with booking=booking %} {% endfor %} {% else %}

No Upcoming Bookings

You don't have any upcoming equipment rentals.

Rent Equipment
{% endif %}
{% 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 %}

No Cancelled Bookings

You haven't cancelled any bookings yet.

{% endif %}
{% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}