from django.urls import path from Base.Views import ( viewsChartOfAccount , ) urlpatterns = [ # URLs de Professional path('', viewsChartOfAccount.ChartOfAccountListView.as_view(), name='ChartOfAccountListView'), path('Create', viewsChartOfAccount.ChartOfAccountCreateView.as_view(), name='ChartOfAccountCreateView'), path('/Detail', viewsChartOfAccount.ChartOfAccountDetailView.as_view(), name='ChartOfAccountDetailView'), path('/Update', viewsChartOfAccount.ChartOfAccountUpdateView.as_view(), name='ChartOfAccountUpdateView'), path('/Delete', viewsChartOfAccount.ChartOfAccountDeleteView.as_view(), name='ChartOfAccountDeleteView'), ]