first commit
This commit is contained in:
14
Base/Urls/urlsServiceList.py
Normal file
14
Base/Urls/urlsServiceList.py
Normal 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'),
|
||||
]
|
||||
Reference in New Issue
Block a user