Procházet zdrojové kódy

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

Steven před 4 roky
rodič
revize
831065b5a1
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  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