mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2025-02-21 21:32:21 +03:00
This plugin has been re-developed for Netbox 4. The sync button has been redesigned as well as the colors of the sync table.
11 lines
341 B
Python
11 lines
341 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
# Define a list of URL patterns to be imported by NetBox. Each pattern maps a URL to
|
|
# a specific view so that it can be accessed by users.
|
|
urlpatterns = (
|
|
path("interface-comparison/<int:device_id>/", views.InterfaceComparisonView.as_view(), name="interface_comparison"),
|
|
)
|