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

This commit is contained in:
Steven 2021-11-03 13:05:34 +01:00 committed by GitHub
parent 61b61b1bc0
commit 831065b5a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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