[Answered ]-How to pass the total amount of product to payment gateway

1👍

You are not passing those variables total and cart to the template context

Change this

return render(request, 'payment/payment_form.html',)

to

return render(request, 'payment/payment_form.html', {'total': total, 'cart': cart})

Leave a comment