summaryrefslogtreecommitdiff
path: root/ishtar_common
diff options
context:
space:
mode:
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
commit8f55cf2014eb82a0ab8259860124c2d2111fe74d (patch)
tree9edb528fdb415a2f785150101bf59ea8170dbd4c /ishtar_common
parentd7b838f3c088337248c0c94d9b765b68e30551a8 (diff)
downloadIshtar-8f55cf2014eb82a0ab8259860124c2d2111fe74d.tar.bz2
Ishtar-8f55cf2014eb82a0ab8259860124c2d2111fe74d.zip
Orga form: fix bad label (refs #1676, refs #1677)
Diffstat (limited to 'ishtar_common')
-rw-r--r--ishtar_common/forms_common.py2
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):