Browse Source

#7717 Missing tags column definition in IP range table (#7724)

Steven 4 năm trước cách đây
mục cha
commit
831065b5a1
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      netbox/ipam/tables/ip.py

+ 3 - 0
netbox/ipam/tables/ip.py

@@ -264,6 +264,9 @@ class IPRangeTable(BaseTable):
         accessor='utilization',
         orderable=False
     )
+    tags = TagColumn(
+        url_name='ipam:iprange_list'
+    )
 
     class Meta(BaseTable.Meta):
         model = IPRange