mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-24 08:25:17 -06:00
Fix bulk creation of VM interfaces (thanks @kkthxbye-code!)
This commit is contained in:
parent
889df4eea2
commit
657a0f5259
@ -9,3 +9,6 @@ __all__ = (
|
|||||||
class VMInterfaceCreateForm(VMInterfaceForm):
|
class VMInterfaceCreateForm(VMInterfaceForm):
|
||||||
name = ExpandableNameField()
|
name = ExpandableNameField()
|
||||||
replication_fields = ('name',)
|
replication_fields = ('name',)
|
||||||
|
|
||||||
|
class Meta(VMInterfaceForm.Meta):
|
||||||
|
exclude = ('name',)
|
||||||
|
Loading…
Reference in New Issue
Block a user