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

Avoid component_type on subclasses

This commit is contained in:
Jonathan Senecal
2020-06-10 22:10:45 -04:00
parent e3a8638471
commit cf81a8979f
2 changed files with 3 additions and 6 deletions

View File

@ -2727,7 +2727,6 @@ class InterfaceForm(InterfaceCommonForm, BootstrapMixin, forms.ModelForm):
class InterfaceCreateForm(InterfaceCommonForm, LabeledComponentForm):
component_type = 'interface'
device = DynamicModelChoiceField(
queryset=Device.objects.prefetch_related('device_type__manufacturer')
)
@ -2816,7 +2815,7 @@ class InterfaceBulkCreateForm(
form_from_model(Interface, ['type', 'enabled', 'mtu', 'mgmt_only', 'description', 'tags']),
DeviceBulkAddComponentForm
):
component_type = 'interface'
pass
class InterfaceBulkEditForm(