from django.urls import path # from django.contrib.auth import views as auth_views from Base.Views import ( viewsProductList , ) urlpatterns = [ # URLs de Professional path('/', viewsProductList.ProductListListView.as_view(), name='ProductListListView'), path('/Create', viewsProductList.ProductListCreateView.as_view(), name='ProductListCreateView'), path('//Detail', viewsProductList.ProductListDetailView.as_view(), name='ProductListDetailView'), path('//Update', viewsProductList.ProductListUpdateView.as_view(), name='ProductListUpdateView'), path('//Delete', viewsProductList.ProductListDeleteView.as_view(), name='ProductListDeleteView'), ]