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

Improved DeviceType help_texts

This commit is contained in:
Jeremy Stretch
2016-03-03 17:55:45 -05:00
parent f9c70424f6
commit 7d11cb5f6c

View File

@ -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']