summaryrefslogtreecommitdiff
path: root/archaeological_finds/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-15 15:21:34 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-15 15:21:34 +0200
commit19bcea02b2f682a46134fb580a24a48615d6e2ef (patch)
treec868e6e58e29890b97d2b44f3ecc20328ef4014e /archaeological_finds/models.py
parent95002d6c80e0f13bd7066be4555a8d6742ea0f4b (diff)
downloadIshtar-19bcea02b2f682a46134fb580a24a48615d6e2ef.tar.bz2
Ishtar-19bcea02b2f682a46134fb580a24a48615d6e2ef.zip
Finds : rename "Integry" field into "Integrity / Interest" (refs #3219)
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r--archaeological_finds/models.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py
index 5811ded6e..1c6a679c2 100644
--- a/archaeological_finds/models.py
+++ b/archaeological_finds/models.py
@@ -71,8 +71,8 @@ class PreservationType(GeneralType):
class IntegrityType(GeneralType):
class Meta:
- verbose_name = _(u"Integrity type")
- verbose_name_plural = _(u"Integrity types")
+ verbose_name = _(u"Integrity / interest type")
+ verbose_name_plural = _(u"Integrity / interest types")
ordering = ('label',)
@@ -355,7 +355,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem):
object_types = models.ManyToManyField(
ObjectType, verbose_name=_(u"Object types"), related_name='find')
integrities = models.ManyToManyField(
- IntegrityType, verbose_name=_(u"Integrity"), related_name='find')
+ IntegrityType, verbose_name=_(u"Integrity / Interest"),
+ related_name='find')
remarkabilities = models.ManyToManyField(
RemarkabilityType, verbose_name=_(u"Remarkability"),
related_name='find')