|
|
@@ -7,13 +7,17 @@ from utilities.choices import ChoiceSet
|
|
|
|
|
|
class SiteStatusChoices(ChoiceSet):
|
|
|
|
|
|
- STATUS_ACTIVE = 'active'
|
|
|
STATUS_PLANNED = 'planned'
|
|
|
+ STATUS_STAGING = 'staging'
|
|
|
+ STATUS_ACTIVE = 'active'
|
|
|
+ STATUS_DECOMMISSIONING = 'decommissioning'
|
|
|
STATUS_RETIRED = 'retired'
|
|
|
|
|
|
CHOICES = (
|
|
|
- (STATUS_ACTIVE, 'Active'),
|
|
|
(STATUS_PLANNED, 'Planned'),
|
|
|
+ (STATUS_STAGING, 'Staging'),
|
|
|
+ (STATUS_ACTIVE, 'Active'),
|
|
|
+ (STATUS_DECOMMISSIONING, 'Decommissioning'),
|
|
|
(STATUS_RETIRED, 'Retired'),
|
|
|
)
|
|
|
|