from django.urls import path from . import views app_name = 'customers' urlpatterns = [ path('', views.customer_list, name='customer-list'), path('create/', views.customer_create, name='customer-create'), path('/', views.customer_detail, name='customer-detail'), path('/edit/', views.customer_update, name='customer-update'), path('/delete/', views.customer_delete, name='customer-delete'), ]