netbox-plugin-device-map/netbox_device_map/urls.py

8 lines
214 B
Python
Raw Normal View History

2022-05-26 09:53:13 +03:00
from django.urls import path
from . import views
urlpatterns = [
path('', views.MapView.as_view(), name='map'),
path('connected-cpe/<int:pk>', views.ConnectedCpeAjaxView.as_view(), name='connected-cpe')
]