* init for v3.1 * added coords + bump version * fix filter + added preselected roles * added draw_default_layout * upgraded packages * fixed edge/node labels * fixed enable_circuit_terminations * added filter for unconnected devices * added ignore_cable_type * fixed old settings using a string instead of array * removed distutils * fixed coords check * added coor saving * added doc img * updated docs * bump version * bump version
17 lines
489 B
Python
17 lines
489 B
Python
from extras.plugins import PluginMenuButton, PluginMenuItem
|
|
from utilities.choices import ButtonColorChoices
|
|
|
|
menu_items = (
|
|
PluginMenuItem(
|
|
link='plugins:netbox_topology_views:home',
|
|
link_text='Topology',
|
|
buttons=(
|
|
PluginMenuButton(
|
|
link='plugins:netbox_topology_views:home',
|
|
title='Topology View',
|
|
icon_class='mdi mdi-plus-thick',
|
|
permissions=[],
|
|
),
|
|
)
|
|
),
|
|
) |