From 85689b25de276e7d688e7931269e6bd758fee022 Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Mon, 15 Sep 2025 20:52:46 +0200 Subject: [PATCH] feat: add Wi-Fi Alliance generation labels to Interface type texts (#20348) * feat: add Wi-Fi Alliance generation labels to Interface type texts Closes: #20347 * Shorten labels for WiGig choices --------- Co-authored-by: Jeremy Stretch --- netbox/dcim/choices.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/netbox/dcim/choices.py b/netbox/dcim/choices.py index d44fb22b2..328b09a6c 100644 --- a/netbox/dcim/choices.py +++ b/netbox/dcim/choices.py @@ -1347,12 +1347,12 @@ class InterfaceTypeChoices(ChoiceSet): ( (TYPE_80211A, 'IEEE 802.11a'), (TYPE_80211G, 'IEEE 802.11b/g'), - (TYPE_80211N, 'IEEE 802.11n'), - (TYPE_80211AC, 'IEEE 802.11ac'), - (TYPE_80211AD, 'IEEE 802.11ad'), - (TYPE_80211AX, 'IEEE 802.11ax'), - (TYPE_80211AY, 'IEEE 802.11ay'), - (TYPE_80211BE, 'IEEE 802.11be'), + (TYPE_80211N, 'IEEE 802.11n (Wi-Fi 4)'), + (TYPE_80211AC, 'IEEE 802.11ac (Wi-Fi 5)'), + (TYPE_80211AD, 'IEEE 802.11ad (WiGig)'), + (TYPE_80211AX, 'IEEE 802.11ax (Wi-Fi 6)'), + (TYPE_80211AY, 'IEEE 802.11ay (WiGig)'), + (TYPE_80211BE, 'IEEE 802.11be (Wi-Fi 7)'), (TYPE_802151, 'IEEE 802.15.1 (Bluetooth)'), (TYPE_802154, 'IEEE 802.15.4 (LR-WPAN)'), (TYPE_OTHER_WIRELESS, 'Other (Wireless)'),