From 5d822fa2c841c89cc4c18be2476cde4e7cac8e2a Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 11 Oct 2012 13:10:24 +0200 Subject: [PATCH] fix --- contact/forms.py | 2 +- prawokultury/contact_forms.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contact/forms.py b/contact/forms.py index 4f5cf65..82eba4b 100644 --- a/contact/forms.py +++ b/contact/forms.py @@ -23,7 +23,7 @@ class ContactForm(forms.Form): __metaclass__ = ContactFormMeta form_tag = None - title = _('Contact form') + form_title = _('Contact form') submit_label = _('Submit') required_css_class = 'required' diff --git a/prawokultury/contact_forms.py b/prawokultury/contact_forms.py index 7689269..d440902 100644 --- a/prawokultury/contact_forms.py +++ b/prawokultury/contact_forms.py @@ -5,7 +5,7 @@ from django.utils.translation import ugettext_lazy as _ class RegistrationForm(ContactForm): form_tag = 'register' - title = _('Registration form') + form_title = _('Registration form') name = forms.CharField(label=_('Name'), max_length=128) contact = forms.EmailField(label=_('E-mail'), max_length=128) -- 2.20.1