From 63e82b8ad1b668858c4edee47ba3293648b6ace1 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 22 Nov 2016 17:56:40 +0100 Subject: Finds: add point of topographic reference (refs #3348) --- archaeological_finds/models.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'archaeological_finds/models.py') diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index d957860e7..7b9387a26 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -418,6 +418,9 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): height = models.FloatField(_(u"Height (cm)"), blank=True, null=True) diameter = models.FloatField(_(u"Diameter (cm)"), blank=True, null=True) thickness = models.FloatField(_(u"Thickness (cm)"), blank=True, null=True) + topographic_reference_point = models.CharField( + _(u"Point of topographic reference"), max_length=20, + blank=True, null=True) dimensions_comment = models.TextField(_(u"Dimensions comment"), blank=True, null=True) mark = models.TextField(_(u"Mark"), blank=True, null=True) -- cgit v1.2.3