first commit

This commit is contained in:
2026-01-02 09:19:43 -03:00
parent 63cf724aaf
commit cc44b7ef4f
187 changed files with 2484 additions and 686 deletions

View File

@@ -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'),
]