From 19bcea02b2f682a46134fb580a24a48615d6e2ef Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 15 Sep 2016 15:21:34 +0200 Subject: Finds : rename "Integry" field into "Integrity / Interest" (refs #3219) --- archaeological_finds/models.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'archaeological_finds/models.py') 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') -- cgit v1.2.3