fix: moved svg files
This commit is contained in:
+8
-1
@@ -2,7 +2,13 @@ from django.urls import path
|
||||
|
||||
from web.views.components import cart_dropdown, list_products
|
||||
from web.views.users import login, logout, register, reset_password
|
||||
from web.views.web import add_cart_item, delete_cart_item, index, product_detail
|
||||
from web.views.web import (
|
||||
add_cart_item,
|
||||
cart_detail,
|
||||
delete_cart_item,
|
||||
index,
|
||||
product_detail,
|
||||
)
|
||||
|
||||
app_name = "web"
|
||||
|
||||
@@ -10,6 +16,7 @@ app_name = "web"
|
||||
urlpatterns = [
|
||||
path("", index, name="index"),
|
||||
path("products/<int:pk>/<str:slug>/", product_detail, name="product_detail"),
|
||||
path("cart/", cart_detail, name="cart_detail"),
|
||||
# users
|
||||
path("login/", login, name="login"),
|
||||
path("logout/", logout, name="logout"),
|
||||
|
||||
Reference in New Issue
Block a user