From f6b27d94bad1f2e27a4ebb28a531cbc122109c18 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Wed, 22 Nov 2023 13:59:25 +0100 Subject: [PATCH] expand regexp --- idhub_auth/forms.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/idhub_auth/forms.py b/idhub_auth/forms.py index 1bc1881..d603807 100644 --- a/idhub_auth/forms.py +++ b/idhub_auth/forms.py @@ -15,7 +15,8 @@ class ProfileForm(forms.ModelForm): def clean_first_name(self): first_name = super().clean()['first_name'] - if not re.match(r'^[a-zA-Z\s]+$', first_name): + match = r'^[a-zA-ZäöüßÄÖÜáéíóúàèìòùÀÈÌÒÙÁÉÍÓÚßñÑ\s\'-]+' + if not re.match(match, first_name): txt = _("The string must contain only characters and spaces") raise forms.ValidationError(txt) @@ -23,7 +24,8 @@ class ProfileForm(forms.ModelForm): def clean_last_name(self): last_name = super().clean()['last_name'] - if not re.match(r'^[a-zA-Z\s]+$', last_name): + match = r'^[a-zA-ZäöüßÄÖÜáéíóúàèìòùÀÈÌÒÙÁÉÍÓÚßñÑ\s\'-]+' + if not re.match(match, last_name): txt = _("The string must contain only characters and spaces") raise forms.ValidationError(txt)