You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
311 B
12 lines
311 B
from django.urls import path
|
|
from new_customers import views
|
|
|
|
|
|
app_name = 'new_customers'
|
|
|
|
|
|
urlpatterns = [
|
|
path('', views.CustomersList.as_view(), name='customers_list'),
|
|
path('new/', views.CustomerNew.as_view(), name='new_user'),
|
|
path('<int:uid>/', views.CustomerDetail.as_view(), name='user'),
|
|
]
|