Browse Source

Improved DeviceType help_texts

Jeremy Stretch 9 years ago
parent
commit
7d11cb5f6c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      netbox/dcim/models.py

+ 3 - 3
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']