{% extends 'base/base.html' %} {% load static %} {% block title %}Shopping Cart - PRACA Equipment Rental{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Your Shopping Cart

Your cart is empty.

{% for item in items %} {% endfor %}
Item Price Quantity Total
{% if item.equipment.images.first %} {{ item.equipment.name }} {% endif %}
{{ item.equipment.name }}
{% if item.start_date and item.end_date %}

{{ item.start_date|date:"M j, Y" }} - {{ item.end_date|date:"M j, Y" }} ({{ item.total_days }} day{{ item.total_days|pluralize }})

{% endif %}
KSh {{ item.daily_rate|floatformat:2 }}/day KSh {{ item.total_price|floatformat:2 }}
Subtotal: KSh {{ cart.total|floatformat:2 }}
Proceed to Checkout
Need Help?

Our team is here to help with any questions about your rental. Contact us for assistance.

Ready to Book?

Proceed to checkout to complete your booking and secure your equipment.

Proceed to Checkout
{% endblock %} {% block extra_js %} {% endblock %}