diff options
| author | Étienne Loks <etienne.loks@proxience.com> | 2014-05-12 18:00:06 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@proxience.com> | 2014-05-12 18:00:06 +0200 | 
| commit | 8f55cf2014eb82a0ab8259860124c2d2111fe74d (patch) | |
| tree | 9edb528fdb415a2f785150101bf59ea8170dbd4c | |
| parent | d7b838f3c088337248c0c94d9b765b68e30551a8 (diff) | |
| download | Ishtar-8f55cf2014eb82a0ab8259860124c2d2111fe74d.tar.bz2 Ishtar-8f55cf2014eb82a0ab8259860124c2d2111fe74d.zip | |
Orga form: fix bad label (refs #1676, refs #1677)
| -rw-r--r-- | ishtar_common/forms_common.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py index 0bea551cf..874e2dabf 100644 --- a/ishtar_common/forms_common.py +++ b/ishtar_common/forms_common.py @@ -84,7 +84,7 @@ class OrganizationForm(forms.Form):                                required=False)      email = forms.EmailField(label=_(u"Email"), required=False)      phone = forms.CharField(label=_(u"Phone"), max_length=18, required=False) -    mobile_phone = forms.CharField(label=_(u"Town"), max_length=18, +    mobile_phone = forms.CharField(label=_(u"Mobile phone"), max_length=18,                                     required=False)      def __init__(self, *args, **kwargs): | 
