diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-11 01:37:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-11 01:37:12 +0200 |
commit | a25984d0634044013f8547f727c2dc6b625406a5 (patch) | |
tree | b04d8589708f69d9fa3993bf36340107b50ed00e /archaeological_files/models.py | |
parent | 9de7962bbbb45108bdfc9a1dc7a8a5bc25715cc4 (diff) | |
download | Ishtar-a25984d0634044013f8547f727c2dc6b625406a5.tar.bz2 Ishtar-a25984d0634044013f8547f727c2dc6b625406a5.zip |
Preventive file: add some fields - better sheet - Administrativ act: add comment
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, |