Set max_length to 70 but for all name fields together and not only every single one.

This commit is contained in:
Martin Gross
2026-04-09 14:55:43 +02:00
committed by Martin Gross
parent 5faa85ed40
commit 7e457f7430
2 changed files with 3 additions and 2 deletions

View File

@@ -172,7 +172,7 @@ class RegistrationForm(forms.Form):
)
self.fields['name_parts'] = NamePartsFormField(
max_length=35,
max_length=70,
required=True,
scheme=request.organizer.settings.name_scheme,
titles=request.organizer.settings.name_scheme_titles,