mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-13 11:59:35 -06:00
14 lines
260 B
Python
14 lines
260 B
Python
from django import forms
|
|
|
|
from utilities.forms import BootstrapMixin, ExpandableNameField
|
|
|
|
__all__ = (
|
|
'VMInterfaceCreateForm',
|
|
)
|
|
|
|
|
|
class VMInterfaceCreateForm(BootstrapMixin, forms.Form):
|
|
name_pattern = ExpandableNameField(
|
|
label='Name'
|
|
)
|