diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-19 21:35:20 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-19 21:35:20 +0100 |
commit | 9b06fa6596def3505af076d6f8807a251c4162e4 (patch) | |
tree | 55f15a16aa4ef00f9050eaefac413933d203c3e3 /alphabetlearning/templates/payments/cart_detail.html | |
parent | 1e1a2f6ac2cadfbc57cc855a67498af097391caf (diff) |
Add multiple items to the cart and Stripe process
- Very rough but it works
- Multiple items can be added to cart
- Can be bought with stripe
- Shopping cart is deleted after successful transaction
Diffstat (limited to '')
-rw-r--r-- | alphabetlearning/templates/payments/cart_detail.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alphabetlearning/templates/payments/cart_detail.html b/alphabetlearning/templates/payments/cart_detail.html index 8c6c01b..46117d1 100644 --- a/alphabetlearning/templates/payments/cart_detail.html +++ b/alphabetlearning/templates/payments/cart_detail.html @@ -21,9 +21,8 @@ </div> <div class="col-4 my-5"> - {% include "payments/cart_sidepanel.html" with cart=cart %} + {% include "payments/cart_sidepanel.html" with cart=cart total=total %} </div> - </div> {% else %} <p>Your cart is empty.</p> |