mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
Closes #5796: Add DC terminal power port, outlet types
This commit is contained in:
parent
e849d28276
commit
3d0882856f
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
||||||
|
* [#5796](https://github.com/netbox-community/netbox/issues/5796) - Add DC terminal power port, outlet types
|
||||||
* [#5980](https://github.com/netbox-community/netbox/issues/5980) - Add Saf-D-Grid power port, outlet types
|
* [#5980](https://github.com/netbox-community/netbox/issues/5980) - Add Saf-D-Grid power port, outlet types
|
||||||
* [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs
|
* [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs
|
||||||
* [#6160](https://github.com/netbox-community/netbox/issues/6160) - Add F connector port type
|
* [#6160](https://github.com/netbox-community/netbox/issues/6160) - Add F connector port type
|
||||||
|
@ -314,6 +314,8 @@ class PowerPortTypeChoices(ChoiceSet):
|
|||||||
TYPE_USB_MICRO_B = 'usb-micro-b'
|
TYPE_USB_MICRO_B = 'usb-micro-b'
|
||||||
TYPE_USB_3_B = 'usb-3-b'
|
TYPE_USB_3_B = 'usb-3-b'
|
||||||
TYPE_USB_3_MICROB = 'usb-3-micro-b'
|
TYPE_USB_3_MICROB = 'usb-3-micro-b'
|
||||||
|
# Direct current (DC)
|
||||||
|
TYPE_DC = 'dc-terminal'
|
||||||
# Proprietary
|
# Proprietary
|
||||||
TYPE_SAF_D_GRID = 'saf-d-grid'
|
TYPE_SAF_D_GRID = 'saf-d-grid'
|
||||||
|
|
||||||
@ -416,6 +418,9 @@ class PowerPortTypeChoices(ChoiceSet):
|
|||||||
(TYPE_USB_3_B, 'USB 3.0 Type B'),
|
(TYPE_USB_3_B, 'USB 3.0 Type B'),
|
||||||
(TYPE_USB_3_MICROB, 'USB 3.0 Micro B'),
|
(TYPE_USB_3_MICROB, 'USB 3.0 Micro B'),
|
||||||
)),
|
)),
|
||||||
|
('DC', (
|
||||||
|
(TYPE_DC, 'DC Terminal'),
|
||||||
|
)),
|
||||||
('Proprietary', (
|
('Proprietary', (
|
||||||
(TYPE_SAF_D_GRID, 'Saf-D-Grid'),
|
(TYPE_SAF_D_GRID, 'Saf-D-Grid'),
|
||||||
)),
|
)),
|
||||||
@ -512,6 +517,8 @@ class PowerOutletTypeChoices(ChoiceSet):
|
|||||||
TYPE_USB_A = 'usb-a'
|
TYPE_USB_A = 'usb-a'
|
||||||
TYPE_USB_MICROB = 'usb-micro-b'
|
TYPE_USB_MICROB = 'usb-micro-b'
|
||||||
TYPE_USB_C = 'usb-c'
|
TYPE_USB_C = 'usb-c'
|
||||||
|
# Direct current (DC)
|
||||||
|
TYPE_DC = 'dc-terminal'
|
||||||
# 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'
|
||||||
@ -608,6 +615,9 @@ class PowerOutletTypeChoices(ChoiceSet):
|
|||||||
(TYPE_USB_MICROB, 'USB Micro B'),
|
(TYPE_USB_MICROB, 'USB Micro B'),
|
||||||
(TYPE_USB_C, 'USB Type C'),
|
(TYPE_USB_C, 'USB Type C'),
|
||||||
)),
|
)),
|
||||||
|
('DC', (
|
||||||
|
(TYPE_DC, 'DC Terminal'),
|
||||||
|
)),
|
||||||
('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'),
|
||||||
|
Loading…
Reference in New Issue
Block a user