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