change email help text

This commit is contained in:
Felix Rindt
2018-05-07 11:35:08 +02:00
parent f4b77e6b03
commit 57416103c3

View File

@@ -23,8 +23,7 @@ class ContactForm(forms.Form):
required_css_class = 'required' required_css_class = 'required'
email = forms.EmailField(label=_('E-mail'), email = forms.EmailField(label=_('E-mail'),
help_text=_('Make sure to enter a valid email address. We will send you an order ' help_text=_('Make sure to enter a valid email address. We will send you an order '
'confirmation including a link that you need in case you want to make ' 'confirmation including a link that you need to access your order later.'),
'modifications to your order or download your ticket later.'),
validators=[EmailBlacklistValidator()], validators=[EmailBlacklistValidator()],
) )