diff options
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index a7d191dd8..0c6e65f83 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1477,7 +1477,7 @@ class AdministrativeActOpeSelect(DocumentItemSelect): )) year = forms.IntegerField(label=_("Year")) index = forms.IntegerField(label=_("Index")) - ref_sra = forms.CharField(label=_("Other reference"), max_length=200) + ref_sra = forms.CharField(label=_("Internal reference"), max_length=200) operation__code_patriarche = forms.CharField( max_length=500, widget=OAWidget, @@ -1542,7 +1542,7 @@ class AdministrativeActForm(CustomForm, ManageOldType): widget=forms.Textarea, required=False) signature_date = DateField(label=_("Signature date"), required=False) comment = forms.CharField(label=_("Comment"), widget=forms.Textarea, required=False) - ref_sra = forms.CharField(label=_("Other reference"), max_length=200, required=False) + ref_sra = forms.CharField(label=_("Internal reference"), max_length=200, required=False) TYPES = [ FieldType('act_type', models.ActType, |