diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-21 17:27:20 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-21 17:27:20 +0200 |
commit | 953183f5ee838e0b65bbd6cb988f092c8bf43de6 (patch) | |
tree | 56f20aa141a5b4b076f9f195c7c84d79fda14e51 /archaeological_finds/models.py | |
parent | 1efb6a4190ec6c90f456220928a98190e3d7225f (diff) | |
download | Ishtar-953183f5ee838e0b65bbd6cb988f092c8bf43de6.tar.bz2 Ishtar-953183f5ee838e0b65bbd6cb988f092c8bf43de6.zip |
Finds: add estimated value. Manage a currency for an Ishtar profile (refs #2969)
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 0bbe4f4cd..b570d7b85 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -368,6 +368,8 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem): choices=CHECK_CHOICES) check_date = models.DateField(_(u"Check date"), default=datetime.date.today) + estimated_value = models.FloatField(_(u"Estimated value"), blank=True, + null=True) history = HistoricalRecords() BASKET_MODEL = FindBasket |