1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

14 lines
260 B
Python
Raw Normal View History

2021-09-28 10:25:07 -04:00
from django import forms
from utilities.forms import BootstrapMixin, ExpandableNameField
2021-09-28 10:25:07 -04:00
__all__ = (
'VMInterfaceCreateForm',
)
class VMInterfaceCreateForm(BootstrapMixin, forms.Form):
2021-09-28 10:25:07 -04:00
name_pattern = ExpandableNameField(
label='Name'
)