From f016f4af41aa55b120385ace38d243b74e31593f Mon Sep 17 00:00:00 2001 From: heinzel Date: Tue, 15 Dec 2020 11:56:36 +0100 Subject: [PATCH] UPD: Registration Form: more information about not DAV member --- dav_registration/forms.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dav_registration/forms.py b/dav_registration/forms.py index bbeb9ee..952813a 100644 --- a/dav_registration/forms.py +++ b/dav_registration/forms.py @@ -12,9 +12,13 @@ logger = logging.getLogger(__name__) class RegistrationForm(forms.ModelForm): not_dav_member = forms.BooleanField(required=False, label=_('Ich bin noch kein DAV Mitglied.'), - help_text=_('Wenn du noch kein DAV Mitglied bist,' - ' oder deine Aufnahme noch in Arbeit ist,' - ' kreuze dieses Feld hier an.')) + help_text='%s
\n%s' % ( + _('Wenn du noch kein DAV Mitglied bist,' + ' oder deine Aufnahme noch in Arbeit ist,' + ' kreuze dieses Feld hier an.'), + _('Spätestens zu Veranstaltungsbeginn muss' + ' jedoch eine Mitgliedschaft bestehen.') + )) class Meta: model = Registration