diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-22 17:56:40 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-22 17:56:40 +0100 |
commit | 81fd3191930e1d82aed6e293f5597c2dbc33060b (patch) | |
tree | 15a8a8313636f4226df7a4ff39d73dfe3021ae23 /archaeological_finds/models.py | |
parent | aa7a9788a76bca58f90add9a7572a12911ff145b (diff) | |
download | Ishtar-81fd3191930e1d82aed6e293f5597c2dbc33060b.tar.bz2 Ishtar-81fd3191930e1d82aed6e293f5597c2dbc33060b.zip |
Finds: add point of topographic reference (refs #3348)
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
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) |