mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* 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
33 lines
1016 B
Python
33 lines
1016 B
Python
from django import forms
|
|
from django.utils.translation import gettext as _
|
|
|
|
from utilities.forms import BootstrapMixin, form_from_model
|
|
from utilities.forms.fields import ExpandableNameField
|
|
from virtualization.models import VMInterface, VirtualMachine
|
|
|
|
__all__ = (
|
|
'VMInterfaceBulkCreateForm',
|
|
)
|
|
|
|
|
|
class VirtualMachineBulkAddComponentForm(BootstrapMixin, forms.Form):
|
|
pk = forms.ModelMultipleChoiceField(
|
|
queryset=VirtualMachine.objects.all(),
|
|
widget=forms.MultipleHiddenInput()
|
|
)
|
|
name = ExpandableNameField(
|
|
label=_('Name')
|
|
)
|
|
|
|
def clean_tags(self):
|
|
# Because we're feeding TagField data (on the bulk edit form) to another TagField (on the model form), we
|
|
# must first convert the list of tags to a string.
|
|
return ','.join(self.cleaned_data.get('tags'))
|
|
|
|
|
|
class VMInterfaceBulkCreateForm(
|
|
form_from_model(VMInterface, ['enabled', 'mtu', 'description', 'tags']),
|
|
VirtualMachineBulkAddComponentForm
|
|
):
|
|
replication_fields = ('name',)
|