feat: reset migrations and created customer address model

This commit is contained in:
2024-12-07 10:10:14 +01:00
parent 1ffa5b117f
commit 48d39f55ba
18 changed files with 863 additions and 908 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
from django.urls import path
from web.views.components import cart, cart_dropdown, list_products
from web.views.users import login, logout, register, reset_password
from web.views.users import login, logout, my_account, register, reset_password
from web.views.web import (
add_cart_item,
cart_detail,
@@ -22,6 +22,7 @@ urlpatterns = [
path("logout/", logout, name="logout"),
path("register/", register, name="register"),
path("reset-password/", reset_password, name="reset-password"),
path("my-account/", my_account, name="my_account"),
# components
path("web/components/products/", list_products, name="list_products"),
path("web/components/cart-dropdown/", cart_dropdown, name="cart_dropdown"),