from django.urls import path from . import views urlpatterns = [ path('', views.customers_table_view, name='customers'), path('customer//', views.CustomerDetailView.as_view(), name='customer'), ]