mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-26 01:06:11 -06:00
Update choices.py
This commit is contained in:
parent
39fd64b2ef
commit
26caaef0de
@ -60,6 +60,7 @@ class IPAddressStatusChoices(ChoiceSet):
|
||||
STATUS_ACTIVE = 'active'
|
||||
STATUS_RESERVED = 'reserved'
|
||||
STATUS_DEPRECATED = 'deprecated'
|
||||
STATUS_ABNORMAL = 'abnormal'
|
||||
STATUS_DHCP = 'dhcp'
|
||||
STATUS_SLAAC = 'slaac'
|
||||
|
||||
@ -67,6 +68,7 @@ class IPAddressStatusChoices(ChoiceSet):
|
||||
(STATUS_ACTIVE, 'Active', 'blue'),
|
||||
(STATUS_RESERVED, 'Reserved', 'cyan'),
|
||||
(STATUS_DEPRECATED, 'Deprecated', 'red'),
|
||||
(STATUS_ABNORMAL, 'Abnormal', 'yellow'),
|
||||
(STATUS_DHCP, 'DHCP', 'green'),
|
||||
(STATUS_SLAAC, 'SLAAC', 'purple'),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user