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

@@ -7,10 +7,10 @@ from Movement.Views import (
urlpatterns = [
# URLs de Professional
path('/', viewsProduct.ProductListView.as_view(), name='MovProductListView'),
# path('/Create', viewsProduct.ProductCreateView.as_view(), name='MovProductCreateView'),
path('/<int:pk>/Detail', viewsProduct.ProductDetailView.as_view(), name='MovProductDetailView'),
path('/<int:pk>/Update', viewsProduct.ProductUpdateView.as_view(), name='MovProductUpdateView'),
path('/<int:pk>/Delete', viewsProduct.ProductDeleteView.as_view(), name='MovProductDeleteView'),
path('/CreateCuston', viewsProductCreateCustom.ProductCreateCustomView.as_view(), name='MovProductCreateCustom'),
path('', viewsProduct.ProductListView.as_view(), name='MovProductListView'),
# path('Create', viewsProduct.ProductCreateView.as_view(), name='MovProductCreateView'),
path('<int:pk>/Detail', viewsProduct.ProductDetailView.as_view(), name='MovProductDetailView'),
path('<int:pk>/Update', viewsProduct.ProductUpdateView.as_view(), name='MovProductUpdateView'),
path('<int:pk>/Delete', viewsProduct.ProductDeleteView.as_view(), name='MovProductDeleteView'),
path('CreateCuston', viewsProductCreateCustom.ProductCreateCustomView.as_view(), name='MovProductCreateCustom'),
]