* 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>
16 lines
547 B
Python
16 lines
547 B
Python
from extras.plugins import PluginMenu, PluginMenuItem
|
|
|
|
menu = PluginMenu(
|
|
label='Topology Views',
|
|
icon_class="mdi mdi-sitemap",
|
|
groups=(
|
|
('TOPOLOGY', (PluginMenuItem(link="plugins:netbox_topology_views:home", link_text="Topology"),),),
|
|
('PREFERENCES',
|
|
(
|
|
PluginMenuItem(link="plugins:netbox_topology_views:images", link_text="Images"),
|
|
PluginMenuItem(link="plugins:netbox_topology_views:individualoptions", link_text="Individual Options"),
|
|
),
|
|
),
|
|
),
|
|
)
|