first commit
This commit is contained in:
14
Base/Urls/urlsPaymentMethod.py
Normal file
14
Base/Urls/urlsPaymentMethod.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 (
|
||||
viewsPayMethod ,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
# URLs de Professional
|
||||
path('/', viewsPayMethod.PayMethodListView.as_view(), name='PayMethodListView'),
|
||||
path('/Create', viewsPayMethod.PayMethodCreateView.as_view(), name='PayMethodCreateView'),
|
||||
path('/<int:pk>/Detail', viewsPayMethod.PayMethodDetailView.as_view(), name='PayMethodDetailView'),
|
||||
path('/<int:pk>/Update', viewsPayMethod.PayMethodUpdateView.as_view(), name='PayMethodUpdateView'),
|
||||
path('/<int:pk>/Delete', viewsPayMethod.PayMethodDeleteView.as_view(), name='PayMethodDeleteView'),
|
||||
]
|
||||
Reference in New Issue
Block a user