diff --git a/src/registrar/admin.py b/src/registrar/admin.py index ee5d8ddc7..421e8d53c 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -120,9 +120,13 @@ class ListHeaderAdmin(AuditedAdmin): # customize the help_text for all formfields for manytomany def formfield_for_manytomany(self, db_field, request, **kwargs): formfield = super().formfield_for_manytomany(db_field, request, **kwargs) - formfield.help_text = formfield.help_text + " If more than one value is selected, the change/delete/view actions will be disabled." + formfield.help_text = ( + formfield.help_text + + " If more than one value is selected, the change/delete/view actions will be disabled." + ) return formfield + class UserContactInline(admin.StackedInline): """Edit a user's profile on the user page.""" diff --git a/src/registrar/models/domain_application.py b/src/registrar/models/domain_application.py index babf51757..9ab3908d4 100644 --- a/src/registrar/models/domain_application.py +++ b/src/registrar/models/domain_application.py @@ -533,6 +533,7 @@ class DomainApplication(TimeStampedModel): "registrar.Contact", blank=True, related_name="contact_applications", + verbose_name="contacts", ) no_other_contacts_rationale = models.TextField(