Closed #9763: Treat IP ranges as fully populated (#19064)

This commit is contained in:
Jeremy Stretch
2025-04-09 10:30:11 -04:00
committed by GitHub
parent 076d16ca6b
commit f8f2ad1d14
16 changed files with 256 additions and 77 deletions

View File

@@ -268,8 +268,8 @@ class IPRangeImportForm(NetBoxModelImportForm):
class Meta:
model = IPRange
fields = (
'start_address', 'end_address', 'vrf', 'tenant', 'status', 'role', 'mark_utilized', 'description',
'comments', 'tags',
'start_address', 'end_address', 'vrf', 'tenant', 'status', 'role', 'mark_populated', 'mark_utilized',
'description', 'comments', 'tags',
)