* Added some individual options * Added general options * Added show_single_cable_logical_conns and draw_default_layout * Added ignore_cable_type to IndividualOptions * Corrected permission, tiny improvements * Add preselected_device_roles to IndividualOptions * Add preselected_tags * Updated documentation * Update README.md * Corrected queryset for preselected_tags * Update README.md * move supported_termination_types to inside the function to prevent migration issues * removed general options * added new migration script --------- Co-authored-by: Mattijs Vanhaverbeke <mattijs.vanhaverbeke@ebo-enterprises.com>
14 lines
576 B
Python
14 lines
576 B
Python
from django.urls import path
|
|
from django.views.generic.base import RedirectView
|
|
|
|
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("", RedirectView.as_view(url="topology/", permanent=True)),
|
|
path("topology/", views.TopologyHomeView.as_view(), name="home"),
|
|
path("images/", views.TopologyImagesView.as_view(), name="images"),
|
|
path("individualoptions/", views.TopologyIndividualOptionsView.as_view(), name="individualoptions"),
|
|
)
|