瀏覽代碼

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

Steven 4 年之前
父節點
當前提交
831065b5a1
共有 1 個文件被更改,包括 3 次插入0 次删除
  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