diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-10-25 12:32:34 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-10-25 12:32:34 +0100 |
commit | affd03397c74e1e7c6e095dca9bff49232f1d8a8 (patch) | |
tree | eaf86c7679c1b557c025ad83d85441dc6c5e86dc /archaeological_finds/models.py | |
parent | b2e2d3902d942d6832181de1af4756abe3ebea68 (diff) | |
download | Ishtar-affd03397c74e1e7c6e095dca9bff49232f1d8a8.tar.bz2 Ishtar-affd03397c74e1e7c6e095dca9bff49232f1d8a8.zip |
Finds: generic comment on dating
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r-- | archaeological_finds/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index a2cea7ef3..2d82afe06 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -281,6 +281,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): diameter = models.FloatField(_(u"Diameter (cm)"), blank=True, null=True) mark = models.TextField(_(u"Mark"), blank=True, null=True) comment = models.TextField(_(u"Comment"), blank=True, null=True) + dating_comment = models.TextField(_(u"Comment on dating"), blank=True, + null=True) previous_id = models.TextField(_(u"Previous ID"), blank=True, null=True) index = models.IntegerField(u"Index", default=0) history = HistoricalRecords() |