X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/6f53d6571e16d43f0084f310a69428446ad9b21c..0a9ec4c13727704f2394760c23d76559f727f5bd:/contact/forms.py diff --git a/contact/forms.py b/contact/forms.py index e369e95..8fa0149 100644 --- a/contact/forms.py +++ b/contact/forms.py @@ -62,8 +62,8 @@ class ContactForm(forms.Form): site = Site.objects.get_current() dictionary = { 'form_tag': self.form_tag, - 'site_name': site.name, - 'site_domain': site.domain, + 'site_name': getattr(self, 'site_name', site.name), + 'site_domain': getattr(self, 'site_domain', site.domain), 'contact': contact, } context = RequestContext(request)