mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 09:28:38 -06:00
Closes #4554: Add HDOT Cx power outlet type
This commit is contained in:
parent
bcb7899b04
commit
e75c4c012d
@ -7,6 +7,7 @@
|
|||||||
* [#3294](https://github.com/netbox-community/netbox/issues/3294) - Implement mechanism for storing user preferences
|
* [#3294](https://github.com/netbox-community/netbox/issues/3294) - Implement mechanism for storing user preferences
|
||||||
* [#4421](https://github.com/netbox-community/netbox/issues/4421) - Retain user's preference for config context format
|
* [#4421](https://github.com/netbox-community/netbox/issues/4421) - Retain user's preference for config context format
|
||||||
* [#4531](https://github.com/netbox-community/netbox/issues/4531) - Retain user's preference for page length
|
* [#4531](https://github.com/netbox-community/netbox/issues/4531) - Retain user's preference for page length
|
||||||
|
* [#4554](https://github.com/netbox-community/netbox/issues/4554) - Add ServerTech's HDOT Cx power outlet type
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
|
@ -424,6 +424,8 @@ class PowerOutletTypeChoices(ChoiceSet):
|
|||||||
TYPE_ITA_M = 'ita-m'
|
TYPE_ITA_M = 'ita-m'
|
||||||
TYPE_ITA_N = 'ita-n'
|
TYPE_ITA_N = 'ita-n'
|
||||||
TYPE_ITA_O = 'ita-o'
|
TYPE_ITA_O = 'ita-o'
|
||||||
|
# Proprietary
|
||||||
|
TYPE_HDOT_CX = 'hdot-cx'
|
||||||
|
|
||||||
CHOICES = (
|
CHOICES = (
|
||||||
('IEC 60320', (
|
('IEC 60320', (
|
||||||
@ -487,6 +489,9 @@ class PowerOutletTypeChoices(ChoiceSet):
|
|||||||
(TYPE_ITA_N, 'ITA Type N'),
|
(TYPE_ITA_N, 'ITA Type N'),
|
||||||
(TYPE_ITA_O, 'ITA Type O'),
|
(TYPE_ITA_O, 'ITA Type O'),
|
||||||
)),
|
)),
|
||||||
|
('Proprietary', (
|
||||||
|
(TYPE_HDOT_CX, 'HDOT Cx'),
|
||||||
|
)),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user