2
0

object_create.py 316 B

1234567891011121314
  1. from utilities.forms import ExpandableNameField
  2. from .model_forms import VMInterfaceForm
  3. __all__ = (
  4. 'VMInterfaceCreateForm',
  5. )
  6. class VMInterfaceCreateForm(VMInterfaceForm):
  7. name = ExpandableNameField()
  8. replication_fields = ('name',)
  9. class Meta(VMInterfaceForm.Meta):
  10. exclude = ('name',)