diff --git a/src/registrar/admin.py b/src/registrar/admin.py index 68bc0a4a4..5f6c71f45 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -1172,7 +1172,17 @@ class DomainRequestAdmin(ListHeaderAdmin): }, ), (".gov domain", {"fields": ["requested_domain", "alternative_domains"]}), - ("Contacts", {"fields": ["authorizing_official", "other_contacts", "no_other_contacts_rationale", "cisa_representative_email"]}), + ( + "Contacts", + { + "fields": [ + "authorizing_official", + "other_contacts", + "no_other_contacts_rationale", + "cisa_representative_email", + ] + }, + ), ("Background info", {"fields": ["purpose", "anything_else", "current_websites"]}), ( "Type of organization", diff --git a/src/registrar/models/domain_request.py b/src/registrar/models/domain_request.py index 563a1e9b0..3fce90aa4 100644 --- a/src/registrar/models/domain_request.py +++ b/src/registrar/models/domain_request.py @@ -1048,7 +1048,7 @@ class DomainRequest(TimeStampedModel): def has_cisa_representative(self) -> bool: """Does this domain request have cisa representative?""" return self.cisa_representative_email != "" and self.cisa_representative_email is not None - + def has_additional_details(self) -> bool: return self.has_anything_else_text() or self.has_cisa_representative()