network_inventory/computers/urls.py

13 lines
349 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('customer/<int:pk>/computers/',
views.computers_table_view, name='computers'),
path('computer/<int:pk>/', views.computer_detail_view,
name='computer'),
path('computers/all/', views.ComputersFilterView.as_view(),
name='all_computers'),
]