X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/a70813d55b9f1fab61b7ec33fbba561ac9505d4a..94844345dfed48adec1da56cd29d98e92b84ed2f:/contact/forms.py diff --git a/contact/forms.py b/contact/forms.py index e8195b9..419540a 100644 --- a/contact/forms.py +++ b/contact/forms.py @@ -34,9 +34,10 @@ class ContactForm(forms.Form): submit_label = _('Submit') admin_list = None notify_on_register = True + notify_user = True required_css_class = 'required' - contact = forms.CharField(max_length=128) + contact = forms.EmailField(label=_('E-mail'), max_length=128) def __init__(self, *args, **kwargs): key = kwargs.pop('key', None) @@ -93,17 +94,18 @@ class ContactForm(forms.Form): except ValidationError: pass else: - mail_subject = render_to_string([ - 'contact/%s/mail_subject.txt' % self.form_tag, - 'contact/mail_subject.txt', - ], dictionary, context).strip() - mail_body = render_to_string([ - 'contact/%s/mail_body.txt' % self.form_tag, - 'contact/mail_body.txt', - ], dictionary, context) - send_mail(mail_subject, mail_body, - 'no-reply@%s' % site.domain, - [contact.contact], - fail_silently=True) + if self.notify_user: + mail_subject = render_to_string([ + 'contact/%s/mail_subject.txt' % self.form_tag, + 'contact/mail_subject.txt', + ], dictionary, context).strip() + mail_body = render_to_string([ + 'contact/%s/mail_body.txt' % self.form_tag, + 'contact/mail_body.txt', + ], dictionary, context) + send_mail(mail_subject, mail_body, + 'no-reply@%s' % site.domain, + [contact.contact], + fail_silently=True) return contact