From a5ec0ee27794290a4b1219310b1e69f02c221e3d Mon Sep 17 00:00:00 2001 From: cybarox Date: Tue, 2 Nov 2021 15:14:08 +0100 Subject: [PATCH] Closes #7717 Missing tags column in IP range table --- netbox/ipam/tables/ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/ipam/tables/ip.py b/netbox/ipam/tables/ip.py index ddad6c573..1323f551f 100644 --- a/netbox/ipam/tables/ip.py +++ b/netbox/ipam/tables/ip.py @@ -269,7 +269,7 @@ class IPRangeTable(BaseTable): model = IPRange fields = ( 'pk', 'start_address', 'end_address', 'size', 'vrf', 'status', 'role', 'tenant', 'description', - 'utilization', + 'utilization','tags', ) default_columns = ( 'pk', 'start_address', 'end_address', 'size', 'vrf', 'status', 'role', 'tenant', 'description',