From 87d396bab52a0f865902377272ea6594248bd9c3 Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Tue, 21 Jul 2026 11:22:20 +0200 Subject: [PATCH] feat(ipam): Change DHCP IP address status color from green to purple Group DHCP with SLAAC as an automatic address configuration method while keeping it visually distinct from Active and Available. Fixes #22623 --- netbox/ipam/choices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/ipam/choices.py b/netbox/ipam/choices.py index 51b65a6da..bc0d45b8a 100644 --- a/netbox/ipam/choices.py +++ b/netbox/ipam/choices.py @@ -69,7 +69,7 @@ class IPAddressStatusChoices(ChoiceSet): (STATUS_ACTIVE, _('Active'), 'blue'), (STATUS_RESERVED, _('Reserved'), 'cyan'), (STATUS_DEPRECATED, _('Deprecated'), 'red'), - (STATUS_DHCP, _('DHCP'), 'green'), + (STATUS_DHCP, _('DHCP'), 'purple'), (STATUS_SLAAC, _('SLAAC'), 'purple'), ]