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

#13230: Tweak field description

This commit is contained in:
Jeremy Stretch
2023-12-01 10:10:44 -05:00
parent 7cec4e9e22
commit dcd3f098ce

View File

@ -109,12 +109,12 @@ class DeviceType(ImageAttachmentsMixin, PrimaryModel, WeightMixin):
exclude_from_utilization = models.BooleanField( exclude_from_utilization = models.BooleanField(
default=False, default=False,
verbose_name=_('exclude from utilization'), verbose_name=_('exclude from utilization'),
help_text=_('Exclude from rack utilization calculations.') help_text=_('Devices of this type are excluded when calculating rack utilization.')
) )
is_full_depth = models.BooleanField( is_full_depth = models.BooleanField(
default=True, default=True,
verbose_name=_('is full depth'), verbose_name=_('is full depth'),
help_text=_('Device consumes both front and rear rack faces') help_text=_('Device consumes both front and rear rack faces.')
) )
subdevice_role = models.CharField( subdevice_role = models.CharField(
max_length=50, max_length=50,