mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
14 lines
280 B
Python
14 lines
280 B
Python
from django import forms
|
|
|
|
from utilities.forms import BootstrapMixin, ExpandableIPAddressField
|
|
|
|
__all__ = (
|
|
'IPAddressBulkCreateForm',
|
|
)
|
|
|
|
|
|
class IPAddressBulkCreateForm(BootstrapMixin, forms.Form):
|
|
pattern = ExpandableIPAddressField(
|
|
label='Address pattern'
|
|
)
|