diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-12-03 17:55:06 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-12-03 17:55:46 +0100 |
commit | df40e324fa1b5eed4bc4dc3ece0f0e8eea98ea10 (patch) | |
tree | 8e2e982bc1accf09dd53b43a70f88acccc05b758 /archaeological_finds/models_finds.py | |
parent | bc1ad1f8452cdbab08b05d3a5bec8bcc5ad0dcae (diff) | |
download | Ishtar-df40e324fa1b5eed4bc4dc3ece0f0e8eea98ea10.tar.bz2 Ishtar-df40e324fa1b5eed4bc4dc3ece0f0e8eea98ea10.zip |
Finds: add circumference
Diffstat (limited to 'archaeological_finds/models_finds.py')
-rw-r--r-- | archaeological_finds/models_finds.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index d4cb9fc2f..3404749c7 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -1113,6 +1113,8 @@ class Find(BulkUpdatedItem, ValueGetter, BaseHistorizedItem, OwnPerms, width = models.FloatField(_(u"Width (cm)"), blank=True, null=True) height = models.FloatField(_(u"Height (cm)"), blank=True, null=True) diameter = models.FloatField(_(u"Diameter (cm)"), blank=True, null=True) + circumference = models.FloatField(_(u"Circumference (cm)"), blank=True, + null=True) thickness = models.FloatField(_(u"Thickness (cm)"), blank=True, null=True) clutter_long_side = models.FloatField( _(u"Clutter - long side (cm)"), blank=True, null=True) |