From 7d11cb5f6cca419aeadf26b198ad1c56a6ca3a5d Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 3 Mar 2016 17:55:45 -0500 Subject: [PATCH] Improved DeviceType help_texts --- netbox/dcim/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox/dcim/models.py b/netbox/dcim/models.py index d906de7d8..bea9a1402 100644 --- a/netbox/dcim/models.py +++ b/netbox/dcim/models.py @@ -276,11 +276,11 @@ class DeviceType(models.Model): is_full_depth = models.BooleanField(default=True, verbose_name="Is full depth", help_text="Device consumes both front and rear rack faces") is_console_server = models.BooleanField(default=False, verbose_name='Is a console server', - help_text="Include this type of device in lists of console servers") + help_text="This type of device has console server ports") is_pdu = models.BooleanField(default=False, verbose_name='Is a PDU', - help_text="Include this type of device in lists of PDUs") + help_text="This type of device has power outlets") is_network_device = models.BooleanField(default=True, verbose_name='Is a network device', - help_text="This is a network device (e.g. switch, router, etc.)") + help_text="This type of device has network interfaces") class Meta: ordering = ['manufacturer', 'model']