From 3fd3c7a383bffe46e2c4ee475b0bd936cf7bb6ab Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Thu, 23 Jul 2020 09:24:02 -0500 Subject: [PATCH] Removes IP address check for NAPALM in HTML --- netbox/templates/dcim/device.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html index ef1a301e2..ebeda4b80 100644 --- a/netbox/templates/dcim/device.html +++ b/netbox/templates/dcim/device.html @@ -108,8 +108,6 @@ {% include 'dcim/inc/device_napalm_tabs.html' with disabled_message='No platform assigned to this device' %} {% elif not device.platform.napalm_driver %} {% include 'dcim/inc/device_napalm_tabs.html' with disabled_message='No NAPALM driver assigned for this platform' %} - {% elif not device.primary_ip %} - {% include 'dcim/inc/device_napalm_tabs.html' with disabled_message='No primary IP address assigned to this device' %} {% else %} {% include 'dcim/inc/device_napalm_tabs.html' %} {% endif %}