Fixes #12642: Fix bulk tenant assignment via cluster import form

This commit is contained in:
jeremystretch
2023-05-22 13:07:40 -04:00
parent f4cd8092a9
commit b675d87b3d
2 changed files with 2 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ class ClusterImportForm(NetBoxModelImportForm):
class Meta:
model = Cluster
fields = ('name', 'type', 'group', 'status', 'site', 'description', 'comments', 'tags')
fields = ('name', 'type', 'group', 'status', 'site', 'tenant', 'description', 'comments', 'tags')
class VirtualMachineImportForm(NetBoxModelImportForm):