From 7e9369ced291d94830b58dc5f7edcc5b608939ff Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 30 Apr 2024 12:32:56 +0200 Subject: 🗃️ operation: add finds and documentation deposit dates (refs #5926) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_operations/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'archaeological_operations/models.py') diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 035ab74e2..5e8bcbc9f 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -1488,12 +1488,14 @@ class Operation( blank=True, ) abstract = models.TextField(_("Abstract"), blank=True, default="") + documentation_deposit_date = models.DateField(_("Documentation deposit date"), blank=True, null=True) documentation_deadline = models.DateField( _("Deadline for submission of the documentation"), blank=True, null=True ) documentation_received = models.NullBooleanField( _("Documentation provided"), blank=True, null=True ) + finds_deposit_date = models.DateField(_("Finds deposit date"), blank=True, null=True) finds_deadline = models.DateField( _("Deadline for submission of the finds"), blank=True, null=True ) -- cgit v1.2.3