X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/42c42960c2dce4500f12dd14a68a10ed4f06abf5..ecf1bb43a75eeacf9dbec78fd6f5a1d3d526dbd8:/contact/forms.py?ds=inline

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)