Jelajahi Sumber

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

Steven 4 tahun lalu
induk
melakukan
831065b5a1
1 mengubah file dengan 3 tambahan dan 0 penghapusan
  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