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('/', viewsServiceList.ServiceListListView.as_view(), name='ServiceListListView'),
path('/Create', viewsServiceList.ServiceListCreateView.as_view(), name='ServiceListCreateView'),
path('/<int:pk>/Detail', viewsServiceList.ServiceListDetailView.as_view(), name='ServiceListDetailView'),
path('/<int:pk>/Update', viewsServiceList.ServiceListUpdateView.as_view(), name='ServiceListUpdateView'),
path('/<int:pk>/Delete', viewsServiceList.ServiceListDeleteView.as_view(), name='ServiceListDeleteView'),
path('', viewsServiceList.ServiceListListView.as_view(), name='ServiceListListView'),
path('Create', viewsServiceList.ServiceListCreateView.as_view(), name='ServiceListCreateView'),
path('<int:pk>/Detail', viewsServiceList.ServiceListDetailView.as_view(), name='ServiceListDetailView'),
path('<int:pk>/Update', viewsServiceList.ServiceListUpdateView.as_view(), name='ServiceListUpdateView'),
path('<int:pk>/Delete', viewsServiceList.ServiceListDeleteView.as_view(), name='ServiceListDeleteView'),
]