{% extends 'app/base.html' %} {% load static %} {% block title %}Cart{% endblock title %} {% block content %}

Shopping Cart

Cart

{% for item in cart reversed%}
{{item.product.title}}

{{item.product.description}}

{{item.quantity}}
Remove item

Rs. {{item.product.selling_price}}


{% empty %}

Cart is Empty

{% endfor %}
{% if cart %}

The Total Amount of

  • AmountRs. {{amount}}
  • Shipping Rs 60
  • Total (including GST)
    Rs. {{totalAmount}}
{% if request.user.is_authenticated %} Place Order {% else %} Place Order {% endif %}
{% endif %}
{% endblock content %}