X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/42c42960c2dce4500f12dd14a68a10ed4f06abf5..85719a090f19061c4e105b58ad4070f4140995f2:/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)