network_inventory/nets/urls.py

12 lines
306 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'),
2020-08-03 17:08:57 +02:00
path('delete/net/<int:pk>/', views.NetDeleteView.as_view(),
name='net_delete'),
2020-08-03 13:41:49 +02:00
]