1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Add AC Hardwire option to PowerPortTypeChoices

Resolves FR #6785
This commit is contained in:
Brian Ellwood
2021-07-22 19:04:34 -04:00
committed by GitHub
parent a038e8bba4
commit e300fad340

View File

@ -341,6 +341,8 @@ class PowerPortTypeChoices(ChoiceSet):
TYPE_DC = 'dc-terminal'
# Proprietary
TYPE_SAF_D_GRID = 'saf-d-grid'
# Other
TYPE_OTHER = 'other'
CHOICES = (
('IEC 60320', (
@ -447,6 +449,9 @@ class PowerPortTypeChoices(ChoiceSet):
('Proprietary', (
(TYPE_SAF_D_GRID, 'Saf-D-Grid'),
)),
('Other', (
(TYPE_OTHER, 'Other'),
)),
)