Fix circuit error (#87)

* fix 'Interface' object has no attribute 'circuit'
This commit is contained in:
mattieserver
2022-03-09 21:00:55 +01:00
committed by GitHub
parent 3e5b28f208
commit f5d9f589bf
5 changed files with 45 additions and 44 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ class TopologyViewsConfig(PluginConfig):
name = 'netbox_topology_views'
verbose_name = 'Topology views'
description = 'An plugin to render topology maps'
version = '1.0.0'
version = '1.0.1'
author = 'Mattijs Vanhaverbeke'
author_email = 'author@example.com'
base_url = 'netbox_topology_views'
@@ -15,7 +15,7 @@ class TopologyViewsConfig(PluginConfig):
'device_img': ['access-switch', 'core-switch', 'firewall', 'router', 'distribution-switch', 'backup', 'storage,wan-network', 'wireless-ap', 'server', 'internal-switch', 'isp-cpe-material', 'non-racked-devices', 'power-units'],
'allow_coordinates_saving': False,
'preselected_tags' : [],
'enable_circuit_terminations': True,
'enable_circuit_terminations': False,
'draw_default_layout': False
}