소스 검색

Closes #7717 Missing tags column in IP range table

cybarox 4 년 전
부모
커밋
a5ec0ee277
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      netbox/ipam/tables/ip.py

+ 1 - 1
netbox/ipam/tables/ip.py

@@ -269,7 +269,7 @@ class IPRangeTable(BaseTable):
         model = IPRange
         fields = (
             'pk', 'start_address', 'end_address', 'size', 'vrf', 'status', 'role', 'tenant', 'description',
-            'utilization',
+            'utilization','tags',
         )
         default_columns = (
             'pk', 'start_address', 'end_address', 'size', 'vrf', 'status', 'role', 'tenant', 'description',