from django.urls import path from . import views urlpatterns = [ path('', views.customers_table_view, name='customers'), path('customer//', views.CustomerDetailView.as_view(), name='customer'), path('customer//computers', views.computers_table_view, name='computers'), path('device//', views.device_detail_view, name='device'), path('computer//', views.computer_detail_view, name='computer'), path('customer//devices/', views.devices_table_view, name='devices'), path('customer//nets/', views.nets_table_view, name='nets'), path('net//', views.net_detail_view, name='net'), path('backup//', views.backup_detail_view, name='backup'), path('computers/all/', views.AllComputersView.as_view(), name='all_computers') ]