{% extends 'base.html' %} {% block content %} {% load static %}
{% for order_item in object.items.all %} {% if order_item.item.discount_price %} {% else %} {% endif %} {% empty %} {% endfor %}
Product Price Quantity Total
img {{ order_item.item.title }} Kshs {{ order_item.item.price }} + {{ order_item.quantity }} -Kshs {{ order_item.get_total_discount_item_price }} (Saving Kshs {{ order_item.get_amount_saved }})Kshs {{ order_item.get_total_item_price }}
Your cart is empty Continue Shoping
{% if object.get_total %}

Order Totals

Total Kshs {{ object.get_total }}
Proceed to Checkout Continue Shoping
{% endif %}
{% endblock content %}