1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #4617: Restore IP prefix depth notation in list view

This commit is contained in:
Jeremy Stretch
2020-05-13 17:08:48 -04:00
parent 07fd92cd4c
commit e0ebb8e7d8
3 changed files with 10 additions and 2 deletions

View File

@ -378,6 +378,8 @@ class PrefixTable(BaseTable):
verbose_name='Pool'
)
add_prefetch = False
class Meta(BaseTable.Meta):
model = Prefix
fields = ('pk', 'prefix', 'status', 'vrf', 'tenant', 'site', 'vlan', 'role', 'is_pool', 'description')