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
This commit is contained in:
Martin Hauser 2026-07-21 11:22:20 +02:00 committed by Jeremy Stretch
parent d857c145c0
commit 87d396bab5
1 changed files with 1 additions and 1 deletions

View File

@ -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'),
]