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 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 +]