diff options
Diffstat (limited to 'archaeological_files/models.py')
-rw-r--r-- | archaeological_files/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
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, |