From 58c2776a1c15e4b17bdcfc9c9eb9017866713f21 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 11 Jul 2022 01:37:12 +0200 Subject: Preventive file: add some fields - better sheet - Administrativ act: add comment --- archaeological_files/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'archaeological_files/models.py') diff --git a/archaeological_files/models.py b/archaeological_files/models.py index cc1ca7c2a..c8a328633 100644 --- a/archaeological_files/models.py +++ b/archaeological_files/models.py @@ -691,6 +691,9 @@ class File( study_period = models.CharField( _("Study period"), max_length=200, default="", blank=True ) + report_due_period = models.CharField( + _("Report due period"), max_length=200, default="", blank=True + ) start_date = models.DateField(_("Start date"), blank=True, null=True) end_date = models.DateField(_("End date"), blank=True, null=True) ground_start_date = models.DateField(_("Ground start date"), blank=True, null=True) @@ -698,9 +701,6 @@ class File( execution_report_date = models.DateField( _("Execution report date"), blank=True, null=True ) - report_due_date = models.DateField( - _("Report due by"), blank=True, null=True - ) linear_meter = models.IntegerField(_("Linear meter"), blank=True, null=True) type_of_agreement = models.ForeignKey( AgreementType, blank=True, null=True, -- cgit v1.2.3