From 488179b6d7e49dc502f95f04994afd22dbdba3b9 Mon Sep 17 00:00:00 2001 From: John W Kerns Date: Fri, 21 Feb 2020 17:58:11 -0800 Subject: [PATCH] InterfaceIPAddressTable to use non-edit link InterfaceIPAddressTable was using IPADDRESS_ASSIGN_LINK (edit URL with return_url), change to using view-only URL with IPADDRESS_LINK --- netbox/ipam/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/ipam/tables.py b/netbox/ipam/tables.py index 8f059c652..2071522e2 100644 --- a/netbox/ipam/tables.py +++ b/netbox/ipam/tables.py @@ -385,7 +385,7 @@ class InterfaceIPAddressTable(BaseTable): """ List IP addresses assigned to a specific Interface. """ - address = tables.TemplateColumn(IPADDRESS_ASSIGN_LINK, verbose_name='IP Address') + address = tables.TemplateColumn(IPADDRESS_LINK, verbose_name='IP Address') vrf = tables.TemplateColumn(VRF_LINK, verbose_name='VRF') status = tables.TemplateColumn(STATUS_LABEL) tenant = tables.TemplateColumn(template_code=TENANT_LINK)