mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-23 04:22:01 -06:00
Adding Molex Micro-Fit connectors to power outlet choices to fix #12984
This commit is contained in:
parent
46d12fbe2e
commit
270a1da601
@ -643,6 +643,9 @@ class PowerOutletTypeChoices(ChoiceSet):
|
|||||||
TYPE_USB_C = 'usb-c'
|
TYPE_USB_C = 'usb-c'
|
||||||
# Direct current (DC)
|
# Direct current (DC)
|
||||||
TYPE_DC = 'dc-terminal'
|
TYPE_DC = 'dc-terminal'
|
||||||
|
TYPE_MOLEX_MICRO_FIT_1X2 = 'molex-micro-fit-1x2'
|
||||||
|
TYPE_MOLEX_MICRO_FIT_2X2 = 'molex-micro-fit-2x2'
|
||||||
|
TYPE_MOLEX_MICRO_FIT_2X4 = 'molex-micro-fit-2x4'
|
||||||
# Proprietary
|
# Proprietary
|
||||||
TYPE_HDOT_CX = 'hdot-cx'
|
TYPE_HDOT_CX = 'hdot-cx'
|
||||||
TYPE_SAF_D_GRID = 'saf-d-grid'
|
TYPE_SAF_D_GRID = 'saf-d-grid'
|
||||||
@ -757,6 +760,9 @@ class PowerOutletTypeChoices(ChoiceSet):
|
|||||||
)),
|
)),
|
||||||
('DC', (
|
('DC', (
|
||||||
(TYPE_DC, 'DC Terminal'),
|
(TYPE_DC, 'DC Terminal'),
|
||||||
|
(TYPE_MOLEX_MICRO_FIT_1X2, 'Molex Micro-Fit 1x2'),
|
||||||
|
(TYPE_MOLEX_MICRO_FIT_2X2, 'Molex Micro-Fit 2x2'),
|
||||||
|
(TYPE_MOLEX_MICRO_FIT_2X4, 'Molex Micro-Fit 2x4'),
|
||||||
)),
|
)),
|
||||||
(_('Proprietary'), (
|
(_('Proprietary'), (
|
||||||
(TYPE_HDOT_CX, 'HDOT Cx'),
|
(TYPE_HDOT_CX, 'HDOT Cx'),
|
||||||
|
Loading…
Reference in New Issue
Block a user