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