From 59f8a253d498b8e6e6d35558e6e43f1c123d5787 Mon Sep 17 00:00:00 2001 From: Anirudha Rajodiya <59107332+Anirudha0789@users.noreply.github.com> Date: Mon, 27 Dec 2021 18:26:04 +0530 Subject: [PATCH 1/2] Update cart.html --- store/templates/store/cart.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/templates/store/cart.html b/store/templates/store/cart.html index 5d79a9d..84a62f9 100644 --- a/store/templates/store/cart.html +++ b/store/templates/store/cart.html @@ -14,7 +14,7 @@
Items: {{order.get_cart_items}}
Total: ${{order.get_cart_total|floatformat:2}}
- Checkout + Checkout From dcd2e57bd218dde267d4b4071531d075e93c3230 Mon Sep 17 00:00:00 2001 From: Anirudha Rajodiya <59107332+Anirudha0789@users.noreply.github.com> Date: Mon, 27 Dec 2021 18:33:41 +0530 Subject: [PATCH 2/2] Update urls.py --- store/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/store/urls.py b/store/urls.py index 2fa4042..f515cfc 100644 --- a/store/urls.py +++ b/store/urls.py @@ -9,5 +9,6 @@ path('update_item/', views.updateItem, name="update_item"), path('process_order/', views.processOrder, name="process_order"), + path('checkout/',views.checkout,name="checkout"), -] \ No newline at end of file +]