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

adds parent device and bay position to table #12223

This commit is contained in:
Abhimanyu Saharan
2023-05-05 19:53:16 +05:30
committed by Jeremy Stretch
parent 12bef7623c
commit 896b19eaa3
2 changed files with 15 additions and 4 deletions

View File

@ -1214,7 +1214,7 @@ class PopulateDeviceBayForm(BootstrapMixin, forms.Form):
installed_device = forms.ModelChoiceField(
queryset=Device.objects.all(),
label=_('Child Device'),
help_text=_("Child devices must first be created and assigned to the site/rack of the parent device.")
help_text=_("Child devices must first be created and assigned to the site and rack of the parent device.")
)
def __init__(self, device_bay, *args, **kwargs):