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

Shopping Cart

Cart

{% for item , quantity in zipped_data %}
{{item.title}}

{{item.description}}

{{quantity}}
Remove item

Rs. {{item.selling_price}}


{% empty %}

Cart is Empty

{% endfor %}
{% if products %}

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 %}