X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/5fd8cacf1c73a8670d45406b7214a59eedaff07f..591fb2bbadcbdcdd89d38a0980c8ee0bfb471bae:/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)