Fix the Add functionality on the Other Contacts formset

This commit is contained in:
Rachid Mrad 2024-01-05 12:22:15 -05:00
parent 2a64230c91
commit 13151c9368
No known key found for this signature in database
GPG key ID: EF38E4CEC4A8F3CF
4 changed files with 17 additions and 7 deletions

View file

@ -734,7 +734,7 @@ class BaseOtherContactsFormSet(RegistrarFormSet):
OtherContactsFormSet = forms.formset_factory(
OtherContactsForm,
extra=1,
extra=0,
absolute_max=1500, # django default; use `max_num` to limit entries
min_num=1,
validate_min=True,