diff --git a/network_inventory/inventory/urls.py b/network_inventory/inventory/urls.py index 3077b67..613bf1f 100644 --- a/network_inventory/inventory/urls.py +++ b/network_inventory/inventory/urls.py @@ -8,13 +8,13 @@ urlpatterns = [ 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('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.AllComputersView.as_view(), name='all_computers')