summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-08 12:10:26 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-08 12:10:26 +0200
commitb15ca19df32888c2ab22489e4d6965537dc0d389 (patch)
treed32e6c17c078a0f3f13ff33d6daff24d92bd2cdb /archaeological_operations/models.py
parent13a0eed56e71fccb91b72b9005a7ffd27ca39c1b (diff)
downloadIshtar-b15ca19df32888c2ab22489e4d6965537dc0d389.tar.bz2
Ishtar-b15ca19df32888c2ab22489e4d6965537dc0d389.zip
Operation: manage deadline for finds and documentation receipt (refs #3191)
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index a855c3bda..0766c1caa 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -269,6 +269,16 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms,
_(u"Record quality"), max_length=2, null=True, blank=True,
choices=QUALITY)
abstract = models.TextField(_(u"Abstract"), null=True, blank=True)
+ documentation_deadline = models.DateField(
+ _(u"Deadline for submission of the documentation"), blank=True,
+ null=True)
+ documentation_received = models.NullBooleanField(
+ _(u"Documentation received"), blank=True, null=True)
+ finds_deadline = models.DateField(
+ _(u"Deadline for submission of the finds"), blank=True, null=True)
+ finds_received = models.NullBooleanField(
+ _(u"Finds received"), blank=True, null=True)
+
point = models.PointField(_(u"Point"), blank=True, null=True)
multi_polygon = models.MultiPolygonField(_(u"Multi polygon"), blank=True,
null=True)