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

Order Summary

{% for order_item in object.items.all %} {% if order_item.item.discount_price %} {% else %} {% endif %} {% empty %} {% endfor %} {% if object.get_total %} {% endif %}
# Item Title Price Quantity Total Item Price
{{forloop.counter}} {{order_item.item.title}}{{order_item.item.discount_price}}{{order_item.item.price}} {{order_item.quantity}} {% if order_item.item.discount_price %} ${{order_item.get_total_discount_item_price}} Saving ${{order_item.get_amount_saved}} {% else %} ${{order_item.get_total_item_price}} {% endif %}
Your cart is empty
Continue Shopping
Order Total ${{object.get_total}}
Proceed To Checkout Continue Shopping
{% endblock content %}