This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from django.urls import path
|
||||
|
||||
from backoffice.views import customers
|
||||
|
||||
urlpatterns = [
|
||||
path('', customers.CustomerListView.as_view(), name='customer_list'),
|
||||
path('<int:pk>/', customers.CustomerDetailView.as_view(), name='customer_detail'),
|
||||
]
|
||||
Reference in New Issue
Block a user