From f7e7699d93c1d8752857b781a868f7df55f3fb8c Mon Sep 17 00:00:00 2001 From: toerb Date: Wed, 8 Apr 2020 09:30:14 +0200 Subject: [PATCH] add rack width of 21 inches for ETSI racks --- netbox/dcim/choices.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbox/dcim/choices.py b/netbox/dcim/choices.py index 79f00bce4..98bb41aa4 100644 --- a/netbox/dcim/choices.py +++ b/netbox/dcim/choices.py @@ -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'), )