Skip to content

Commit bfb37d6

Browse files
committed
Closes #7022: Add ITA type C (CEE 7/16) power port type
1 parent fd180e4 commit bfb37d6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

docs/release-notes/version-3.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
* [#6917](https://github.com/netbox-community/netbox/issues/6917) - Make IP assigned checkmark in IP table link to interface
88
* [#6973](https://github.com/netbox-community/netbox/issues/6973) - Enable custom ordering of reports
9+
* [#7022](https://github.com/netbox-community/netbox/issues/7022) - Add ITA type C (CEE 7/16) power port type
910
* [#7118](https://github.com/netbox-community/netbox/issues/7118) - Render URL custom fields as hyperlinks in object tables
1011
* [#7323](https://github.com/netbox-community/netbox/issues/7323) - Add serial filter field for racks & devices
1112
* [#7372](https://github.com/netbox-community/netbox/issues/7372) - Link to local docs for model from object add/edit views

netbox/dcim/choices.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ class PowerPortTypeChoices(ChoiceSet):
316316
TYPE_CS8365C = 'cs8365c'
317317
TYPE_CS8465C = 'cs8465c'
318318
# ITA/international
319+
TYPE_ITA_C = 'ita-c'
319320
TYPE_ITA_E = 'ita-e'
320321
TYPE_ITA_F = 'ita-f'
321322
TYPE_ITA_EF = 'ita-ef'
@@ -421,6 +422,7 @@ class PowerPortTypeChoices(ChoiceSet):
421422
(TYPE_CS8465C, 'CS8465C'),
422423
)),
423424
('International/ITA', (
425+
(TYPE_ITA_C, 'ITA Type C (CEE 7/16)'),
424426
(TYPE_ITA_E, 'ITA Type E (CEE 7/5)'),
425427
(TYPE_ITA_F, 'ITA Type F (CEE 7/4)'),
426428
(TYPE_ITA_EF, 'ITA Type E/F (CEE 7/7)'),

0 commit comments

Comments
 (0)