We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c0a3ca commit f743f2cCopy full SHA for f743f2c
netbox/dcim/forms/model_forms.py
@@ -401,12 +401,13 @@ class DeviceForm(TenancyForm, NetBoxModelForm):
401
position = forms.DecimalField(
402
required=False,
403
help_text=_("The lowest-numbered unit occupied by the device"),
404
+ localize=True,
405
widget=APISelect(
406
api_url='/api/dcim/racks/{{rack}}/elevation/',
407
attrs={
408
'disabled-indicator': 'device',
409
'data-dynamic-params': '[{"fieldName":"face","queryParam":"face"}]'
- }
410
+ },
411
)
412
413
device_type = DynamicModelChoiceField(
0 commit comments