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

Closes #4305: Add 10-inch option for rack width

This commit is contained in:
Jeremy Stretch
2020-03-03 10:07:20 -05:00
parent 78a1aad6c0
commit a261060e5c
2 changed files with 3 additions and 0 deletions

View File

@ -55,10 +55,12 @@ class RackTypeChoices(ChoiceSet):
class RackWidthChoices(ChoiceSet):
WIDTH_10IN = 10
WIDTH_19IN = 19
WIDTH_23IN = 23
CHOICES = (
(WIDTH_10IN, '10 inches'),
(WIDTH_19IN, '19 inches'),
(WIDTH_23IN, '23 inches'),
)