network_inventory/customers/urls.py
2020-01-09 21:59:37 +01:00

10 lines
224 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.customers_table_view, name='customers'),
path('customer/<int:pk>/', views.CustomerDetailView.as_view(),
name='customer'),
]