From 1fc96e7d169644e822b166ade8146f4db4ddea0d Mon Sep 17 00:00:00 2001 From: cybarox Date: Wed, 3 Nov 2021 08:48:49 +0100 Subject: [PATCH] #7717 Missing tags column definition in IP range table --- netbox/ipam/tables/ip.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/netbox/ipam/tables/ip.py b/netbox/ipam/tables/ip.py index 1323f551f..33b716306 100644 --- a/netbox/ipam/tables/ip.py +++ b/netbox/ipam/tables/ip.py @@ -264,12 +264,15 @@ class IPRangeTable(BaseTable): accessor='utilization', orderable=False ) + tags = TagColumn( + url_name='ipam:iprange_list' + ) class Meta(BaseTable.Meta): model = IPRange fields = ( 'pk', 'start_address', 'end_address', 'size', 'vrf', 'status', 'role', 'tenant', 'description', - 'utilization','tags', + 'utilization', 'tags', ) default_columns = ( 'pk', 'start_address', 'end_address', 'size', 'vrf', 'status', 'role', 'tenant', 'description',