diff --git a/src/registrar/models/domain_application.py b/src/registrar/models/domain_application.py index 3859e04a7..1ff551bea 100644 --- a/src/registrar/models/domain_application.py +++ b/src/registrar/models/domain_application.py @@ -562,11 +562,13 @@ class DomainApplication(TimeStampedModel): """Show this step if the answer to the first question implies it. This shows for answers that aren't "Federal" or "Interstate". + This also doesnt show if user selected "School District" as well (#524) """ user_choice = self.organization_type excluded = [ DomainApplication.OrganizationChoices.FEDERAL, DomainApplication.OrganizationChoices.INTERSTATE, + DomainApplication.OrganizationChoices.SCHOOL_DISTRICT, ] return bool(user_choice and user_choice not in excluded)