first commit

This commit is contained in:
2025-11-01 18:10:39 -03:00
parent 6e7348359f
commit 63cf724aaf
220 changed files with 4040 additions and 62 deletions

View File

@@ -0,0 +1,14 @@
from django.urls import path
# from django.contrib.auth import views as auth_views
from Base.Views import (
viewsServiceList ,
)
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'),
]