From dcd3f098ce251aef9c75ac1ba41a98178521f24d Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 1 Dec 2023 10:10:44 -0500 Subject: [PATCH] #13230: Tweak field description --- netbox/dcim/models/devices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/dcim/models/devices.py b/netbox/dcim/models/devices.py index 07c1c70f6..8ed8336cd 100644 --- a/netbox/dcim/models/devices.py +++ b/netbox/dcim/models/devices.py @@ -109,12 +109,12 @@ class DeviceType(ImageAttachmentsMixin, PrimaryModel, WeightMixin): exclude_from_utilization = models.BooleanField( default=False, 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( default=True, 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( max_length=50,