diff --git a/db.sqlite3 b/db.sqlite3 index 00b641d..7936433 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/ecommerce/__pycache__/__init__.cpython-38.pyc b/ecommerce/__pycache__/__init__.cpython-38.pyc index 933bedc..35e4911 100644 Binary files a/ecommerce/__pycache__/__init__.cpython-38.pyc and b/ecommerce/__pycache__/__init__.cpython-38.pyc differ diff --git a/ecommerce/__pycache__/settings.cpython-38.pyc b/ecommerce/__pycache__/settings.cpython-38.pyc index 49da128..8592cbc 100644 Binary files a/ecommerce/__pycache__/settings.cpython-38.pyc and b/ecommerce/__pycache__/settings.cpython-38.pyc differ diff --git a/ecommerce/__pycache__/urls.cpython-38.pyc b/ecommerce/__pycache__/urls.cpython-38.pyc index db1dbca..1f4109f 100644 Binary files a/ecommerce/__pycache__/urls.cpython-38.pyc and b/ecommerce/__pycache__/urls.cpython-38.pyc differ diff --git a/ecommerce/__pycache__/wsgi.cpython-38.pyc b/ecommerce/__pycache__/wsgi.cpython-38.pyc index 2d284ac..7b07bf1 100644 Binary files a/ecommerce/__pycache__/wsgi.cpython-38.pyc and b/ecommerce/__pycache__/wsgi.cpython-38.pyc differ diff --git a/store/__pycache__/__init__.cpython-38.pyc b/store/__pycache__/__init__.cpython-38.pyc index 6258116..845b84f 100644 Binary files a/store/__pycache__/__init__.cpython-38.pyc and b/store/__pycache__/__init__.cpython-38.pyc differ diff --git a/store/__pycache__/admin.cpython-38.pyc b/store/__pycache__/admin.cpython-38.pyc index 830cd3a..de2e22f 100644 Binary files a/store/__pycache__/admin.cpython-38.pyc and b/store/__pycache__/admin.cpython-38.pyc differ diff --git a/store/__pycache__/apps.cpython-38.pyc b/store/__pycache__/apps.cpython-38.pyc index dd23e06..639a9b1 100644 Binary files a/store/__pycache__/apps.cpython-38.pyc and b/store/__pycache__/apps.cpython-38.pyc differ diff --git a/store/__pycache__/models.cpython-38.pyc b/store/__pycache__/models.cpython-38.pyc index 60da44d..6792775 100644 Binary files a/store/__pycache__/models.cpython-38.pyc and b/store/__pycache__/models.cpython-38.pyc differ diff --git a/store/__pycache__/urls.cpython-38.pyc b/store/__pycache__/urls.cpython-38.pyc index af9c648..e4dbe80 100644 Binary files a/store/__pycache__/urls.cpython-38.pyc and b/store/__pycache__/urls.cpython-38.pyc differ diff --git a/store/__pycache__/utils.cpython-38.pyc b/store/__pycache__/utils.cpython-38.pyc index 0509380..7c0ee38 100644 Binary files a/store/__pycache__/utils.cpython-38.pyc and b/store/__pycache__/utils.cpython-38.pyc differ diff --git a/store/__pycache__/views.cpython-38.pyc b/store/__pycache__/views.cpython-38.pyc index 55ee0de..34880f2 100644 Binary files a/store/__pycache__/views.cpython-38.pyc and b/store/__pycache__/views.cpython-38.pyc differ diff --git a/store/migrations/__pycache__/0001_initial.cpython-38.pyc b/store/migrations/__pycache__/0001_initial.cpython-38.pyc index 03360c2..31e430f 100644 Binary files a/store/migrations/__pycache__/0001_initial.cpython-38.pyc and b/store/migrations/__pycache__/0001_initial.cpython-38.pyc differ diff --git a/store/migrations/__pycache__/0002_product_image.cpython-38.pyc b/store/migrations/__pycache__/0002_product_image.cpython-38.pyc index 03a8bcd..28bfb63 100644 Binary files a/store/migrations/__pycache__/0002_product_image.cpython-38.pyc and b/store/migrations/__pycache__/0002_product_image.cpython-38.pyc differ diff --git a/store/migrations/__pycache__/__init__.cpython-38.pyc b/store/migrations/__pycache__/__init__.cpython-38.pyc index 021fd6a..e17e410 100644 Binary files a/store/migrations/__pycache__/__init__.cpython-38.pyc and b/store/migrations/__pycache__/__init__.cpython-38.pyc differ diff --git a/store/templates/store/cart.html b/store/templates/store/cart.html index 5d79a9d..9a12acb 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 @@ -38,9 +38,9 @@

{{item.quantity}}

- + - +

${{item.get_total|floatformat:2}}

diff --git a/store/templates/store/store.html b/store/templates/store/store.html index e61c142..72bac41 100644 --- a/store/templates/store/store.html +++ b/store/templates/store/store.html @@ -9,7 +9,7 @@
{{product.name}}

- + View

${{product.price}}

diff --git a/store/urls.py b/store/urls.py index 2fa4042..504d542 100644 --- a/store/urls.py +++ b/store/urls.py @@ -9,5 +9,5 @@ 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