Files
hossein-por-shop/backend/product/urls.py
T
Parsa Nazer 2f1236a83d new route
2025-05-19 20:41:54 +03:30

10 lines
515 B
Python

from django.urls import path
from .views import AllCategories, ProductView, AllProductsView, CommentView, ShowCaseProductsView
urlpatterns = [
path('', AllProductsView.as_view(), name='category-products'),
path('slider_category', ShowCaseProductsView.as_view(), name='category-products'),
path('categories', AllCategories.as_view(), name='all-categories'),
path('<int:pk>', ProductView.as_view(), name='product-detail'),
path('comments/<int:pk>', CommentView.as_view(), name='comment-views'),
]