from django.urls import path, include from . import views urlpatterns = [ path('accounts/', include('django.contrib.auth.urls')), 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('customer//devices/', views.devices_table_view, name='devices'), path('customer//nets/', views.nets_table_view, name='nets'), path('customer//backups/', views.backups_table_view, name='backups'), path('computer//', views.computer_detail_view, name='computer'), path('device//', views.device_detail_view, name='device'), path('net//', views.net_detail_view, name='net'), path('backup//', views.backup_detail_view, name='backup'), path('computers/all/', views.ComputersFilterView.as_view(), name='all_computers'), path('customer//licenses/', views.licenses_table_view, name='licenses'), path('customer//users/', views.users_table_view, name='users'), path('user//', views.user_detail_view, name='user'), ]