mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-17 18:09:25 +02:00
Merge pull request #2254 from cisagov/nl/2036-reorder-request-status-dropdown-options
(on meoward sandbox) Issue #2036 - reorder domain request status options
This commit is contained in:
commit
79b23ad362
2 changed files with 35 additions and 3 deletions
|
@ -43,14 +43,14 @@ class DomainRequest(TimeStampedModel):
|
|||
|
||||
# Constants for choice fields
|
||||
class DomainRequestStatus(models.TextChoices):
|
||||
STARTED = "started", "Started"
|
||||
SUBMITTED = "submitted", "Submitted"
|
||||
IN_REVIEW = "in review", "In review"
|
||||
ACTION_NEEDED = "action needed", "Action needed"
|
||||
APPROVED = "approved", "Approved"
|
||||
WITHDRAWN = "withdrawn", "Withdrawn"
|
||||
REJECTED = "rejected", "Rejected"
|
||||
INELIGIBLE = "ineligible", "Ineligible"
|
||||
SUBMITTED = "submitted", "Submitted"
|
||||
WITHDRAWN = "withdrawn", "Withdrawn"
|
||||
STARTED = "started", "Started"
|
||||
|
||||
class StateTerritoryChoices(models.TextChoices):
|
||||
ALABAMA = "AL", "Alabama (AL)"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue