We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3789342 commit 38f5a9eCopy full SHA for 38f5a9e
netbox/virtualization/choices.py
@@ -39,7 +39,6 @@ class VirtualMachineStatusChoices(ChoiceSet):
39
STATUS_FAILED = 'failed'
40
STATUS_DECOMMISSIONING = 'decommissioning'
41
STATUS_PAUSED = 'paused'
42
- STATUS_SUSPENDED = 'suspended'
43
44
CHOICES = [
45
(STATUS_OFFLINE, _('Offline'), 'gray'),
@@ -49,5 +48,4 @@ class VirtualMachineStatusChoices(ChoiceSet):
49
48
(STATUS_FAILED, _('Failed'), 'red'),
50
(STATUS_DECOMMISSIONING, _('Decommissioning'), 'yellow'),
51
(STATUS_PAUSED, _('Paused'), 'orange'),
52
- (STATUS_SUSPENDED, _('Suspended'), 'purple'),
53
]
0 commit comments