mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-14 13:34:10 +02:00
Merge branch 'ms/3458-FEB-admin' into cb/3212-subissues
This commit is contained in:
commit
3656b19828
2 changed files with 79 additions and 3 deletions
|
@ -515,12 +515,15 @@ class DomainRequest(TimeStampedModel):
|
|||
feb_naming_requirements_details = models.TextField(
|
||||
null=True,
|
||||
blank=True,
|
||||
help_text="Required if requested domain that doesn't meet naming requirements",
|
||||
verbose_name="Domain name rationale",
|
||||
)
|
||||
|
||||
feb_purpose_choice = models.CharField(
|
||||
null=True,
|
||||
blank=True,
|
||||
choices=FEBPurposeChoices.choices,
|
||||
verbose_name="Purpose type",
|
||||
)
|
||||
|
||||
working_with_eop = models.BooleanField(
|
||||
|
@ -548,7 +551,6 @@ class DomainRequest(TimeStampedModel):
|
|||
|
||||
# This field is alternately used for generic domain purpose explanations
|
||||
# and for explanations of the specific purpose chosen with feb_purpose_choice
|
||||
# by a Federal Executive Branch agency.
|
||||
purpose = models.TextField(
|
||||
null=True,
|
||||
blank=True,
|
||||
|
@ -562,6 +564,7 @@ class DomainRequest(TimeStampedModel):
|
|||
time_frame_details = models.TextField(
|
||||
null=True,
|
||||
blank=True,
|
||||
verbose_name="Target time frame",
|
||||
)
|
||||
|
||||
is_interagency_initiative = models.BooleanField(
|
||||
|
@ -572,6 +575,7 @@ class DomainRequest(TimeStampedModel):
|
|||
interagency_initiative_details = models.TextField(
|
||||
null=True,
|
||||
blank=True,
|
||||
verbose_name="Interagency initiative",
|
||||
)
|
||||
|
||||
alternative_domains = models.ManyToManyField(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue