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_operations/forms.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'archaeological_operations/forms.py') diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index bdc351c35..b092e91f7 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1634,6 +1634,7 @@ class AdministrativeActOpeSelect(TableSelect): label=_("Department"), choices=[]) act_object = forms.CharField(label=_("Object"), max_length=300) + comment = forms.CharField(label=_("Comment"), max_length=500) history_creator = forms.IntegerField( label=_("Created by"), widget=widgets.JQueryAutoComplete( @@ -1695,6 +1696,7 @@ class AdministrativeActForm(CustomForm, ManageOldType): act_object = forms.CharField(label=_("Object"), max_length=300, widget=forms.Textarea, required=False) signature_date = DateField(label=_("Signature date"), required=False) + comment = forms.CharField(label=_("Comment"), widget=forms.Textarea, required=False) if settings.COUNTRY == 'fr': ref_sra = forms.CharField(label="Autre référence", max_length=15, required=False) -- cgit v1.2.3