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})
Source:stackexchange.com