network_inventory/nets/urls.py
2020-01-10 00:01:06 +01:00

10 lines
214 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('customer/<int:pk>/nets/', views.nets_table_view,
name='nets'),
path('net/<int:pk>/', views.net_detail_view, name='net'),
]