mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-23 04:22:01 -06:00
Closes #3841: Add California-style power connectors
This commit is contained in:
parent
2a2bc66841
commit
40fe6666e3
@ -270,6 +270,13 @@ class PowerPortTypeChoices(ChoiceSet):
|
||||
TYPE_NEMA_L620P = 'nema-l6-20p'
|
||||
TYPE_NEMA_L630P = 'nema-l6-30p'
|
||||
TYPE_NEMA_L650P = 'nema-l6-50p'
|
||||
# California style
|
||||
TYPE_CS6361C = 'cs6361c'
|
||||
TYPE_CS6365C = 'cs6365c'
|
||||
TYPE_CS8165C = 'cs8165c'
|
||||
TYPE_CS8265C = 'cs8265c'
|
||||
TYPE_CS8365C = 'cs8365c'
|
||||
TYPE_CS8465C = 'cs8465c'
|
||||
# ITA/international
|
||||
TYPE_ITA_E = 'ita-e'
|
||||
TYPE_ITA_F = 'ita-f'
|
||||
@ -325,6 +332,14 @@ class PowerPortTypeChoices(ChoiceSet):
|
||||
(TYPE_NEMA_L630P, 'NEMA L6-30P'),
|
||||
(TYPE_NEMA_L650P, 'NEMA L6-50P'),
|
||||
)),
|
||||
('California Style', (
|
||||
(TYPE_CS6361C, 'CS6361C'),
|
||||
(TYPE_CS6365C, 'CS6365C'),
|
||||
(TYPE_CS8165C, 'CS8165C'),
|
||||
(TYPE_CS8265C, 'CS8265C'),
|
||||
(TYPE_CS8365C, 'CS8365C'),
|
||||
(TYPE_CS8465C, 'CS8465C'),
|
||||
)),
|
||||
('International/ITA', (
|
||||
(TYPE_ITA_E, 'ITA Type E (CEE 7/5)'),
|
||||
(TYPE_ITA_F, 'ITA Type F (CEE 7/4)'),
|
||||
@ -384,6 +399,13 @@ class PowerOutletTypeChoices(ChoiceSet):
|
||||
TYPE_NEMA_L620R = 'nema-l6-20r'
|
||||
TYPE_NEMA_L630R = 'nema-l6-30r'
|
||||
TYPE_NEMA_L650R = 'nema-l6-50r'
|
||||
# California style
|
||||
TYPE_CS6360C = 'CS6360C'
|
||||
TYPE_CS6364C = 'CS6364C'
|
||||
TYPE_CS8164C = 'CS8164C'
|
||||
TYPE_CS8264C = 'CS8264C'
|
||||
TYPE_CS8364C = 'CS8364C'
|
||||
TYPE_CS8464C = 'CS8464C'
|
||||
# ITA/international
|
||||
TYPE_ITA_E = 'ita-e'
|
||||
TYPE_ITA_F = 'ita-f'
|
||||
@ -438,6 +460,14 @@ class PowerOutletTypeChoices(ChoiceSet):
|
||||
(TYPE_NEMA_L630R, 'NEMA L6-30R'),
|
||||
(TYPE_NEMA_L650R, 'NEMA L6-50R'),
|
||||
)),
|
||||
('California Style', (
|
||||
(TYPE_CS6360C, 'CS6360C'),
|
||||
(TYPE_CS6364C, 'CS6364C'),
|
||||
(TYPE_CS8164C, 'CS8164C'),
|
||||
(TYPE_CS8264C, 'CS8264C'),
|
||||
(TYPE_CS8364C, 'CS8364C'),
|
||||
(TYPE_CS8464C, 'CS8464C'),
|
||||
)),
|
||||
('ITA/International', (
|
||||
(TYPE_ITA_E, 'ITA Type E (CEE7/5)'),
|
||||
(TYPE_ITA_F, 'ITA Type F (CEE7/3)'),
|
||||
|
Loading…
Reference in New Issue
Block a user