diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 17:37:02 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 17:37:02 +0200 |
| commit | 1da1066e460d9da9393068b005eeab4a08ed75aa (patch) | |
| tree | b45a9a1b134f9015715bd458b11dee0bf58a502b /archaeological_finds/models.py | |
| parent | 50162e444ac3f50194318338cfb3b1ad7480f9a8 (diff) | |
| parent | 804af43c6c25f56bbe50d921ee7486f9f2b7e3ca (diff) | |
| download | Ishtar-1da1066e460d9da9393068b005eeab4a08ed75aa.tar.bz2 Ishtar-1da1066e460d9da9393068b005eeab4a08ed75aa.zip | |
Merge branch 'master' into v0.9
Diffstat (limited to 'archaeological_finds/models.py')
| -rw-r--r-- | archaeological_finds/models.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 5811ded6e..be9817287 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') |
