Changes but with comments this time

This commit is contained in:
Rebecca Hsieh 2023-09-04 12:07:57 -07:00
parent 28a80ace36
commit a4adb5ed46
No known key found for this signature in database
GPG key ID: 644527A2F375A379
14 changed files with 56 additions and 9 deletions

View file

@ -384,12 +384,21 @@ class DomainApplication(TimeStampedModel):
help_text="Type of work of the organization",
)
# TODO-446:
# about_your_organization = models.TextField(
# null=True,
# blank=True,
# help_text="Information about your organization",
# )
more_organization_information = models.TextField(
null=True,
blank=True,
help_text="More information about your organization",
)
# TODO-446: Remove above bc we don't need this textbox anymore
authorizing_official = models.ForeignKey(
"registrar.Contact",
null=True,
@ -653,6 +662,7 @@ class DomainApplication(TimeStampedModel):
]
return bool(user_choice and user_choice not in excluded)
# TODO-446: Rename to show_about_your_organization
def show_type_of_work(self) -> bool:
"""Show this step if this is a special district or interstate."""
user_choice = self.organization_type