* Topology button in Site View * Add mdi icons to Topology and Close Buttons * Fix buttons tag and class * fixed drag & site filter Co-authored-by: Mattijs Vanhaverbeke <mattijs.vanhaverbeke@ebo-enterprises.com>
16 lines
373 B
Python
16 lines
373 B
Python
|
|
from extras.plugins import PluginTemplateExtension
|
|
from django.conf import settings
|
|
from packaging import version
|
|
|
|
NETBOX_CURRENT_VERSION = version.parse(settings.VERSION)
|
|
|
|
|
|
class SiteButtons(PluginTemplateExtension):
|
|
model = 'dcim.site'
|
|
def buttons(self):
|
|
return self.render('netbox_topology_views/site_button.html')
|
|
|
|
|
|
template_extensions = [SiteButtons]
|