network_inventory/nets/urls.py

10 lines
214 B
Python
Raw Normal View History

2020-01-10 00:01:06 +01:00
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'),
]