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:
parent
d857c145c0
commit
87d396bab5
|
|
@ -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'),
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue