Layout tweaks

This commit is contained in:
Rachid Mrad 2024-01-12 17:57:42 -05:00
parent 31d80cc91d
commit bec3c96e0d
No known key found for this signature in database
GPG key ID: EF38E4CEC4A8F3CF
2 changed files with 3 additions and 3 deletions

View file

@ -609,7 +609,7 @@ class OtherContactsYesNoForm(RegistrarForm):
self.fields["has_other_contacts"] = forms.TypedChoiceField(
coerce=lambda x: x.lower() == "true" if x is not None else None, # coerce strings to bool, excepting None
choices=((True, "Yes, I can name other employees."), (False, "No (Well ask you to explain why).")),
choices=((True, "Yes, I can name other employees."), (False, "No. (Well ask you to explain why.)")),
initial=initial_value,
widget=forms.RadioSelect,
)