{% extends 'base.html.twig' %} {% block body %}
{% set p=1 %} {% set tt =0%} {% if(product_det|length)>0 %} {% for prodcrt in product_det %} {% set rt = prodcrt.prd_qty * prodcrt.prd_price %} {% set tt = tt+rt %} {% set p=p+1 %} {% endfor %} {% else %} {% endif %}
SNo Product Price Quantity Total
{{p}}
Product image

{{prodcrt.product_name}}  ({{weigh_arr[prodcrt.cart_id]}})

Rs.{{prodcrt.prd_price | number_format(2, '.', ',')}} {{prodcrt.prd_qty}} Rs.{{ (prodcrt.prd_qty * prodcrt.prd_price) |number_format(2, '.', ',') }}
Your are not placed any orders
Rs.{{tt|number_format(2, '.', ',')}}
{% endblock %}