From 7ac641792c2388a25594c630bf32bc7accf332b7 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sun, 21 Aug 2016 17:27:20 +0200 Subject: Finds: add estimated value. Manage a currency for an Ishtar profile (refs #2969) --- archaeological_finds/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'archaeological_finds/models.py') 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 -- cgit v1.2.3