Files
CenterPes/Base/Urls/urlsProductList.py
2025-11-01 18:10:39 -03:00

14 lines
700 B
Python

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