mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-31 01:33:56 +02:00
Changes but with comments this time
This commit is contained in:
parent
28a80ace36
commit
a4adb5ed46
14 changed files with 56 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue