Files
CenterPes/Base/Urls/urlsProductList.py
2026-01-02 09:19:43 -03:00

14 lines
695 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'),
]