netbox/netbox/virtualization/forms/object_create.py
Jeremy Stretch d470848b29
Closes #12246: General cleanup of utilities modules
* Clean up base modules

* Clean up forms modules

* Clean up templatetags modules

* Replace custom simplify_decimal filter with floatformat

* Misc cleanup

* Merge ReturnURLForm into ConfirmationForm

* Clean up import statements for utilities.forms

* Fix field class references in docs
2023-04-14 10:33:53 -04:00

15 lines
323 B
Python

from utilities.forms.fields import ExpandableNameField
from .model_forms import VMInterfaceForm
__all__ = (
'VMInterfaceCreateForm',
)
class VMInterfaceCreateForm(VMInterfaceForm):
name = ExpandableNameField()
replication_fields = ('name',)
class Meta(VMInterfaceForm.Meta):
exclude = ('name',)