mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-18 18:39:21 +02:00
Updated order of domain request status options
This commit is contained in:
parent
07bfac4ffd
commit
2b9ec086a2
1 changed files with 3 additions and 3 deletions
|
@ -34,14 +34,14 @@ class DomainRequest(TimeStampedModel):
|
||||||
|
|
||||||
# Constants for choice fields
|
# Constants for choice fields
|
||||||
class DomainRequestStatus(models.TextChoices):
|
class DomainRequestStatus(models.TextChoices):
|
||||||
STARTED = "started", "Started"
|
|
||||||
SUBMITTED = "submitted", "Submitted"
|
|
||||||
IN_REVIEW = "in review", "In review"
|
IN_REVIEW = "in review", "In review"
|
||||||
ACTION_NEEDED = "action needed", "Action needed"
|
ACTION_NEEDED = "action needed", "Action needed"
|
||||||
APPROVED = "approved", "Approved"
|
APPROVED = "approved", "Approved"
|
||||||
WITHDRAWN = "withdrawn", "Withdrawn"
|
|
||||||
REJECTED = "rejected", "Rejected"
|
REJECTED = "rejected", "Rejected"
|
||||||
INELIGIBLE = "ineligible", "Ineligible"
|
INELIGIBLE = "ineligible", "Ineligible"
|
||||||
|
SUBMITTED = "submitted", "Submitted"
|
||||||
|
WITHDRAWN = "withdrawn", "Withdrawn"
|
||||||
|
STARTED = "started", "Started"
|
||||||
|
|
||||||
class StateTerritoryChoices(models.TextChoices):
|
class StateTerritoryChoices(models.TextChoices):
|
||||||
ALABAMA = "AL", "Alabama (AL)"
|
ALABAMA = "AL", "Alabama (AL)"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue