Merge pull request #4501 from toerb/develop

add rack width of 21 inches for ETSI racks
This commit is contained in:
Jeremy Stretch 2020-04-20 11:03:09 -04:00 committed by GitHub
commit 3db83dd3a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,11 +57,13 @@ class RackWidthChoices(ChoiceSet):
WIDTH_10IN = 10
WIDTH_19IN = 19
WIDTH_21IN = 21
WIDTH_23IN = 23
CHOICES = (
(WIDTH_10IN, '10 inches'),
(WIDTH_19IN, '19 inches'),
(WIDTH_21IN, '21 inches'),
(WIDTH_23IN, '23 inches'),
)