mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
26 lines
715 B
Python
26 lines
715 B
Python
from extras.plugins import PluginMenuButton, PluginMenuItem
|
|
|
|
|
|
menu_items = (
|
|
PluginMenuItem(
|
|
link='plugins:dummy_plugin:dummy_models',
|
|
link_text='Item 1',
|
|
buttons=(
|
|
PluginMenuButton(
|
|
link='admin:dummy_plugin_dummymodel_add',
|
|
title='Add a new dummy model',
|
|
icon_class='mdi mdi-plus-thick',
|
|
),
|
|
PluginMenuButton(
|
|
link='admin:dummy_plugin_dummymodel_add',
|
|
title='Add a new dummy model',
|
|
icon_class='mdi mdi-plus-thick',
|
|
),
|
|
)
|
|
),
|
|
PluginMenuItem(
|
|
link='plugins:dummy_plugin:dummy_models',
|
|
link_text='Item 2',
|
|
),
|
|
)
|