We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9e0739 commit db72a64Copy full SHA for db72a64
netbox/dcim/forms.py
@@ -340,7 +340,7 @@ class DeviceForm(forms.ModelForm, BootstrapMixin):
340
disabled_indicator='device'))
341
manufacturer = forms.ModelChoiceField(queryset=Manufacturer.objects.all(),
342
widget=forms.Select(attrs={'filter-for': 'device_type'}))
343
- device_type = forms.ModelChoiceField(queryset=DeviceType.objects.all(), label='Model', widget=APISelect(
+ device_type = forms.ModelChoiceField(queryset=DeviceType.objects.all(), label='Device type', widget=APISelect(
344
api_url='/api/dcim/device-types/?manufacturer_id={{manufacturer}}',
345
display_field='model'
346
))
0 commit comments