From 62cac0ec03a96d5f358148cf6dff2a21ccf20854 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 22 Nov 2016 18:13:03 +0100 Subject: Finds: add MNI (refs #3358) --- archaeological_finds/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'archaeological_finds/models.py') diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 7b9387a26..b7637ba3b 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -413,6 +413,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): remarkabilities = models.ManyToManyField( RemarkabilityType, verbose_name=_(u"Remarkability"), related_name='find') + min_number_of_individuals = models.IntegerField( + _(u"Minimum number of individuals (MNI)"), blank=True, null=True) length = models.FloatField(_(u"Length (cm)"), blank=True, null=True) width = models.FloatField(_(u"Width (cm)"), blank=True, null=True) height = models.FloatField(_(u"Height (cm)"), blank=True, null=True) -- cgit v1.2.3