summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-10-16 13:16:43 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-10-16 13:16:43 +0200
commitdf1f9c87d8267b7702e13038b57eb6c78e9770e2 (patch)
treefcfb6a9cd9d20da4ed0943a90edf475dfaf4422a /ishtar_common/models.py
parent3936fb6fcd9beb96e19b975c75aeec9dcd0ae266 (diff)
downloadIshtar-df1f9c87d8267b7702e13038b57eb6c78e9770e2.tar.bz2
Ishtar-df1f9c87d8267b7702e13038b57eb6c78e9770e2.zip
Town relationship: manage in admin (refs #3753)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 3c2972cab..9629ae4dd 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -2577,7 +2577,8 @@ class Town(Imported, models.Model):
blank=True)
year = models.IntegerField(
_("Year of creation"), null=True, blank=True,
- help_text=_("If not filled considered as the older town known."))
+ help_text=_(u"Filling this field is relevant to distinguish old towns "
+ u"to new towns."))
children = models.ManyToManyField(
'Town', verbose_name=_(u"Town children"), blank=True,
related_name='parents')