diff options
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index df21f5314..a3c3ba575 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1124,15 +1124,15 @@ class Address(BaseHistorizedItem): town = models.CharField(_(u"Town"), max_length=70, null=True, blank=True) country = models.CharField(_(u"Country"), max_length=30, null=True, blank=True) - alt_address = models.TextField(_(u"Alternative address"), null=True, + alt_address = models.TextField(_(u"Other address: address"), null=True, blank=True) alt_address_complement = models.TextField( - _(u"Alternative address complement"), null=True, blank=True) - alt_postal_code = models.CharField(_(u"Alternative address: postal code"), + _(u"Other address: address complement"), null=True, blank=True) + alt_postal_code = models.CharField(_(u"Other address: postal code"), max_length=10, null=True, blank=True) - alt_town = models.CharField(_(u"Alternative address: town"), max_length=70, + alt_town = models.CharField(_(u"Other address: town"), max_length=70, null=True, blank=True) - alt_country = models.CharField(_(u"Alternative address: Country"), + alt_country = models.CharField(_(u"Other address: country"), max_length=30, null=True, blank=True) phone = models.CharField(_(u"Phone"), max_length=18, null=True, blank=True) phone_desc = models.CharField(_(u"Phone description"), max_length=300, |