first commit
This commit is contained in:
@@ -6,9 +6,9 @@ from Base.Views import (
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Professional
|
||||
path('/', viewsProductList.ProductListListView.as_view(), name='ProductListListView'),
|
||||
path('/Create', viewsProductList.ProductListCreateView.as_view(), name='ProductListCreateView'),
|
||||
path('/<int:pk>/Detail', viewsProductList.ProductListDetailView.as_view(), name='ProductListDetailView'),
|
||||
path('/<int:pk>/Update', viewsProductList.ProductListUpdateView.as_view(), name='ProductListUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsProductList.ProductListDeleteView.as_view(), name='ProductListDeleteView'),
|
||||
path('', viewsProductList.ProductListListView.as_view(), name='ProductListListView'),
|
||||
path('Create', viewsProductList.ProductListCreateView.as_view(), name='ProductListCreateView'),
|
||||
path('<int:pk>/Detail', viewsProductList.ProductListDetailView.as_view(), name='ProductListDetailView'),
|
||||
path('<int:pk>/Update', viewsProductList.ProductListUpdateView.as_view(), name='ProductListUpdateView'),
|
||||
path('<int:pk>/Delete', viewsProductList.ProductListDeleteView.as_view(), name='ProductListDeleteView'),
|
||||
]
|
||||
Reference in New Issue
Block a user