urls based on frontend desires
This commit is contained in:
@@ -2,9 +2,9 @@ from django.urls import path
|
||||
from .views import AllCategories, ProductView, AllProductsView, CommentView
|
||||
|
||||
urlpatterns = [
|
||||
path('categories/', AllCategories.as_view(), name='all-categories'),
|
||||
path('products/<int:pk>/', ProductView.as_view(), name='product-detail'),
|
||||
path('categories/<int:pk>/products/', AllProductsView.as_view(), name='category-products'),
|
||||
path('products/<int:pk>/comments/', CommentView.as_view(), name='product-comments'),
|
||||
path('comments/<int:pk>/', CommentView.as_view(), name='comment-delete'),
|
||||
path('categories', AllCategories.as_view(), name='all-categories'),
|
||||
path('products/<int:pk>', ProductView.as_view(), name='product-detail'),
|
||||
path('categories/products', AllProductsView.as_view(), name='category-products'),
|
||||
path('products/<int:pk>/comments', CommentView.as_view(), name='product-comments'),
|
||||
path('comments/<int:pk>', CommentView.as_view(), name='comment-delete'),
|
||||
]
|
||||
Reference in New Issue
Block a user