feat: reset migrations and created customer address model
This commit is contained in:
+2
-1
@@ -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"),
|
||||
|
||||
Reference in New Issue
Block a user