#3486: Update "Title or role in your organization" field label - [aa] (#3864)

* title or role updates V1

* updated error message for OtherContactsForm

* Correcting user_profile.py
This commit is contained in:
Abe Alam 2025-06-10 17:04:41 -04:00 committed by GitHub
parent 1ee1382dfd
commit 901e487bf5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -446,7 +446,7 @@ class SeniorOfficialForm(RegistrarForm):
error_messages={"required": ("Enter the last name / family name of your senior official.")},
)
title = forms.CharField(
label="Title or role in your organization",
label="Title or role",
error_messages={
"required": (
"Enter the title or role your senior official has in your"
@ -664,10 +664,10 @@ class OtherContactsForm(RegistrarForm):
error_messages={"required": "Enter the last name / family name of this contact."},
)
title = forms.CharField(
label="Title or role in your organization",
label="Title or role",
error_messages={
"required": (
"Enter the title or role in your organization of this contact (e.g., Chief Information Officer)."
"Enter the title or role of this contact in your organization (e.g., Chief Information Officer)."
)
},
)