diff options
Diffstat (limited to 'archaeological_files/forms.py')
-rw-r--r-- | archaeological_files/forms.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/archaeological_files/forms.py b/archaeological_files/forms.py index bee0e7caa..2e4a7004b 100644 --- a/archaeological_files/forms.py +++ b/archaeological_files/forms.py @@ -464,7 +464,7 @@ class FileFormPlanningService(CustomForm, IshtarForm): validators=[valid_id(Person)], ) permit_reference = forms.CharField( - label=_("File reference"), required=False, max_length=200 + label=_("Permit/order reference"), required=False, max_length=200 ) planning_service_date = forms.DateField( label=_("Date of planning service file"), widget=DatePicker, required=False @@ -570,11 +570,7 @@ class FileFormResearch(CustomForm, ManageOldType, forms.Form): "scientist": Person, "requested_operation_type": OperationType, "organization": Organization, - "department": Department, } - department = widgets.Select2MultipleField( - model=Department, label=_("Departments"), required=False - ) scientist = forms.IntegerField( widget=widgets.JQueryAutoComplete( reverse_lazy( @@ -613,7 +609,7 @@ class FileFormResearch(CustomForm, ManageOldType, forms.Form): if settings.COUNTRY == "fr": cira_advised = forms.NullBooleanField(label="Passage en CIRA", required=False) research_comment = forms.CharField( - label=_("Comment"), widget=forms.Textarea, required=False + label=_("Research archaeology comment"), widget=forms.Textarea, required=False ) if settings.COUNTRY == "fr": mh_register = forms.NullBooleanField( |