* [up] add config for custom images, better js * [up] use bundler to bundle js * [fix] remove domcontentloaded since defer is used * [fix] formatting with black * [fix] images drf api * [up] add support for custom icons on additional roles: power panel, power feed, circuit * [up] optimize topology generation by using `_id` when trying to access pk of related object * [fix] kebab case instead of slugification * [fix] use empty queryset in api views & change coord save logic
9 lines
253 B
Python
9 lines
253 B
Python
from extras.plugins import PluginMenuItem
|
|
|
|
menu_items = (
|
|
PluginMenuItem(link="plugins:netbox_topology_views:home", link_text="Topology"),
|
|
PluginMenuItem(
|
|
link="plugins:netbox_topology_views:images", link_text="Topology Images"
|
|
),
|
|
)
|